summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSviatoslav Sydorenko <wk@sydorenko.org.ua>2017-09-13 21:01:22 +0300
committerSviatoslav Sydorenko <wk@sydorenko.org.ua>2017-09-13 21:01:22 +0300
commitcf8bed55dde7ed7e323f452f5c298a187f83dc53 (patch)
tree764d6cd4a259549ea6b4d1eab8e3996aac5d8f56
parent6add12600730824ac6183fe31fd7ff488711b2b6 (diff)
downloadcherrypy-git-cf8bed55dde7ed7e323f452f5c298a187f83dc53.tar.gz
Fix integration of pytest-runner with setuptools
-rw-r--r--setup.cfg1
-rwxr-xr-xsetup.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 6c756a3b..8ade6ffa 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,6 @@
[aliases]
release = sdist bdist_wheel
+test = pytest
[wheel]
universal = 1
diff --git a/setup.py b/setup.py
index aab5b09a..e866e601 100755
--- a/setup.py
+++ b/setup.py
@@ -118,6 +118,7 @@ setup_params = dict(
include_package_data=True,
install_requires=install_requires,
extras_require=extras_require,
+ tests_require=extras_require['testing'],
setup_requires=[
'setuptools_scm',
] + pytest_runner,