From ae7fbd412cb5b32c30bc01087383f3d2ef3b3963 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Sun, 17 Jul 2016 22:56:21 -0400 Subject: [PATCH] setup.py: Fix test command setting 'nose.collector' as test_suite See #68 See http://nose.readthedocs.io/en/latest/setuptools_integration.html?highlight=python%20setup.py%20test Suggested-by: Matt McCormick --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index cfe23b1a..28b36759 100755 --- a/setup.py +++ b/setup.py @@ -47,6 +47,6 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', ], - test_suite='tests', + test_suite='nose.collector', tests_require=dev_requirements )