summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorAdam Chainz <adam@adamj.eu>2016-08-24 11:21:58 +0100
committerAdam Chainz <adam@adamj.eu>2016-08-24 11:22:19 +0100
commit30f7b6c267ea0f1480b5f0a49aae5b0bfbcc1fc4 (patch)
tree95dddb592ad7d8eb9e68ab78e04371800ee0ac36 /setup.cfg
parent013b8af3786df65952427564f1d7e103d929ac65 (diff)
downloadpymemcache-30f7b6c267ea0f1480b5f0a49aae5b0bfbcc1fc4.tar.gz
Prevent pytest-warning on pytest 3.0+
Prevent `WC1 None [pytest] section in setup.cfg files is deprecated, use [tool:pytest] instead.`, as per pytest-dev/pytest#567.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg6
1 files changed, 3 insertions, 3 deletions
diff --git a/setup.cfg b/setup.cfg
index 1ff4e7b..8c2b13c 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -6,9 +6,9 @@ tag = True
[bdist_wheel]
universal = true
-[pytest]
+[tool:pytest]
norecursedirs = build docs/_build *.egg .tox *.venv
-addopts =
+addopts =
--verbose
--tb=short
--capture=no
@@ -17,7 +17,7 @@ addopts =
-rfEsxX
--cov=pymemcache --cov-report=xml --cov-report=term-missing
-m unit
-markers =
+markers =
unit
integration
benchmark