diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2018-07-31 00:02:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-31 00:02:59 -0700 |
commit | bc559df2afcc51d1804e5d068d7e2c57bc4f72af (patch) | |
tree | 5ba022bfcc13ca1d6f9f16ac323d570cde51895b /setup.py | |
parent | 573d15705bfa57a22b63010796d76c9ba5f7be3b (diff) | |
parent | 57e6bf0c0162c3fd445580344ada5d662b373bd3 (diff) | |
download | cmd2-git-bc559df2afcc51d1804e5d068d7e2c57bc4f72af.tar.gz |
Merge pull request #485 from python-cmd2/sphinx_tests
Add tests which verify documentation build
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -73,8 +73,10 @@ EXTRAS_REQUIRE = { # development only dependencies # install with 'pip install -e .[dev]' 'dev': [ - 'pytest', 'pytest-cov', 'tox', 'pylint', 'sphinx', 'sphinx-rtd-theme', - 'sphinx-autobuild', 'invoke', 'twine>=1.11', + # for python 3.5 and earlier we need the third party mock module + "mock ; python_version<'3.6'", + 'pytest', 'codecov', 'pytest-cov', 'pytest-mock', 'tox', 'pylint', + 'sphinx', 'sphinx-rtd-theme', 'sphinx-autobuild', 'invoke', 'twine>=1.11', ] } |