From ec8f409489ec3f58c7495e6bef165a54da41fcbd Mon Sep 17 00:00:00 2001 From: jwg4 Date: Fri, 13 May 2016 11:37:25 +0000 Subject: [PATCH] Remove '.py' from name of test module `test_suite` should be the name of the Python module not the file. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 504f24e..364891e 100644 --- a/setup.py +++ b/setup.py @@ -73,7 +73,7 @@ 'Topic :: Internet', 'Topic :: Internet :: WWW/HTTP', ], - test_suite="test.py", + test_suite="test", tests_require=[ "mock" ]