summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini25
1 files changed, 10 insertions, 15 deletions
diff --git a/tox.ini b/tox.ini
index 112017b77..ca3cac99b 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,11 +1,15 @@
[tox]
-envlist=flake8,py26,py27,py33,py34,py35,pypy,du12,du11,du10
+envlist=flake8,py27,py34,py35,pypy,du12,du11,du10
[testenv]
deps=
+ six
nose
+ docutils
sqlalchemy
whoosh
+ html5lib
+ mock
typing
setenv =
SPHINX_TEST_TEMPDIR = {envdir}/testbuild
@@ -13,37 +17,23 @@ commands=
{envpython} tests/run.py -I py35 -m '^[tT]est' {posargs}
sphinx-build -q -W -b html -d {envtmpdir}/doctrees doc {envtmpdir}/html
-[testenv:py26]
-deps=
- mock
- {[testenv]deps}
-
-[testenv:py27]
-deps=
- mock
- {[testenv]deps}
-
[testenv:pypy]
deps=
- mock
simplejson
{[testenv]deps}
[testenv:du10]
deps=
- mock
docutils==0.10
{[testenv]deps}
[testenv:du11]
deps=
- mock
docutils==0.11
{[testenv]deps}
[testenv:du12]
deps=
- mock
docutils==0.12
{[testenv]deps}
@@ -51,6 +41,11 @@ deps=
deps=flake8
commands=flake8
+[testenv:py27]
+deps=
+ enum34
+ {[testenv]deps}
+
[testenv:py35]
commands=
{envpython} tests/run.py -m '^[tT]est' {posargs}