summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg17
1 files changed, 9 insertions, 8 deletions
diff --git a/setup.cfg b/setup.cfg
index ac1ceb8..77afa15 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -46,7 +46,8 @@ where=src
[options.extras_require]
testing =
- nose
+ pytest
+ pytest-cover
coverage>=5.0
docs =
@@ -54,13 +55,13 @@ docs =
docutils
pylons-sphinx-themes>=1.0.9
-[nosetests]
-match=^test
-nocapture=1
-cover-package=waitress
-cover-erase=1
-
[bdist_wheel]
universal = 1
-
+[tool:pytest]
+python_files = test_*.py
+# For the benefit of test_wasyncore.py
+python_classes = Test_*
+testpaths =
+ tests
+addopts = -W always --cov --cov-report=term-missing