From 987980e80928806d851f16b7785d99062f6d90fd Mon Sep 17 00:00:00 2001 From: Elvis Stansvik Date: Sun, 7 Feb 2016 14:20:04 +0100 Subject: [PATCH] Fix syntax of `tests_require` option Confusingly, the option has no trailing 's' like `install_requires`. See: https://pythonhosted.org/setuptools/setuptools.html https://travis-ci.org/pytest-dev/pytest-qt/jobs/100969573#L363 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e0a10c47..fd732b81 100644 --- a/setup.py +++ b/setup.py @@ -59,6 +59,6 @@ def run_tests(self): 'Topic :: Software Development :: Testing', 'Topic :: Software Development :: User Interfaces', ], - tests_requires=['pytest'], + tests_require=['pytest'], cmdclass={'test': PyTest}, )