summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2020-11-13 00:21:49 -0800
committerSteve Piercy <web@stevepiercy.com>2020-11-13 00:21:49 -0800
commit3fd3f1bc99fa117dd7a756a7985d8794515426c9 (patch)
tree28136cf270ce12efe1d4e546d9832efb81eab48b /setup.py
parent7c4fce298b1e7e2af1aa062e3eb0181db3b967e0 (diff)
downloadwebtest-3fd3f1bc99fa117dd7a756a7985d8794515426c9.tar.gz
Install pytest-cov
Remove remnants of nosetests and replace with pytest
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 73da336..bb698e8 100644
--- a/setup.py
+++ b/setup.py
@@ -16,6 +16,7 @@ tests_require = [
'PasteDeploy',
'pyquery',
'pytest',
+ 'pytest-cov',
'WSGIProxy2',
]
@@ -60,7 +61,6 @@ setup(name='WebTest',
zip_safe=False,
python_requires='>=3.6, <4',
install_requires=install_requires,
- test_suite='nose.collector',
tests_require=tests_require,
extras_require={
'tests': tests_require,