summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: ebab45f9c03911c35baa989264fab3b99f78db92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[bdist_wheel]
universal = true

[coverage:run]
omit = pymemcache/test/*

[tool:pytest]
norecursedirs = build docs/_build *.egg .tox *.venv
addopts = 
	--verbose
	--tb=short
	--capture=no
	-rfEsxX
	--cov=pymemcache --cov-config=setup.cfg --cov-report=xml --cov-report=term-missing
	-m unit
markers = 
	unit
	integration
	benchmark

[flake8]
show-source = True
max-line-length = 80
exclude = .tox/*,.venv/*,docs/*