Skip to content

Commit

Permalink
Limit python setup.py test to our tests
Browse files Browse the repository at this point in the history
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
  • Loading branch information
sigmavirus24 committed Dec 9, 2017
1 parent 24d80ff commit 6216041
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
'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=[
Expand Down

0 comments on commit 6216041

Please sign in to comment.