Skip to content

Commit

Permalink
Add missing tests_require requirement (unittest2)
Browse files Browse the repository at this point in the history
unittest2 is listed in test-requirements.txt, but is missing from tests_require in setup.py. It may be worth reading the contests of test_requirements.txt to populate tests_require, but I'd leave that design decision to you :) cc @dstufft
  • Loading branch information
koobs committed Jan 27, 2015
1 parent 51db425 commit 6bface4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup

install_requires = ["requests"]
tests_require = ["mock"]
tests_require = ["mock", "unittest2"]

base_dir = os.path.dirname(os.path.abspath(__file__))

Expand Down

0 comments on commit 6bface4

Please sign in to comment.