diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 22 |
1 files changed, 4 insertions, 18 deletions
@@ -2,14 +2,9 @@ envlist = py26,py27,pypy,py33,py34,py35,docs,pep8,py3pep8 [testenv] -# If you add a new dep here you probably need to add it in setup.py as well deps = coverage - iso8601 - pretend - pytest - hypothesis>=1.11.4 - pyasn1_modules + .[test] ./vectors passenv = ARCHFLAGS LDFLAGS CFLAGS INCLUDE LIB LD_LIBRARY_PATH USERNAME commands = @@ -24,12 +19,7 @@ commands = [testenv:docs] deps = - doc8 - pyenchant - readme_renderer - sphinx==1.3.1 - sphinx_rtd_theme - sphinxcontrib-spelling + .[docs-test] basepython = python2.7 commands = sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html @@ -57,18 +47,14 @@ commands = [testenv:pep8] deps = - flake8 - flake8-import-order - pep8-naming + .[pep8-test] commands = flake8 . [testenv:py3pep8] basepython = python3 deps = - flake8 - flake8-import-order - pep8-naming + .[pep8-test] commands = flake8 . |