Limit python setup.py test to our tests

Tell unittest.discover specifically what to look for instead of letting
them scan the entirety of our directory (which could have other
dependencies downloaded with their tests that will fail).

Closes #403
This commit is contained in:
Ian Stapleton Cordasco
2017-12-09 09:06:02 -06:00
parent 24d80ffed7
commit 6216041859
+1
View File
@@ -30,6 +30,7 @@ setup(
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
test_suite="test_httpbin",
packages=find_packages(),
include_package_data = True, # include files listed in MANIFEST.in
install_requires=[