summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini45
1 files changed, 27 insertions, 18 deletions
diff --git a/tox.ini b/tox.ini
index 15e36aae..b08d6b29 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,39 +1,48 @@
[tox]
-envlist=py24,py25,py26,py27,py31,py32,pypy,du08,du07,du06,du05
+envlist=py25,py26,py27,py31,py32,py33,pypy,du10,du09,du08,du07
[testenv]
deps=
nose
+ sqlalchemy
+ whoosh
+setenv =
+ BUILD_TEST_PATH = {envdir}/tests
commands=
- nosetests
+ {envpython} tests/run.py {posargs}
sphinx-build -W -b html -d {envtmpdir}/doctrees doc {envtmpdir}/html
-[testenv:py24]
+[testenv:py25]
deps=
- nose
- simplejson
+ simplejson==2.5.0
+ {[testenv]deps}
-[testenv:pypy]
+[testenv:py33]
deps=
- nose
- simplejson
+ docutils>=0.10.0
+ {[testenv]deps}
-[testenv:du05]
-deps=
- nose
- docutils==0.5
-
-[testenv:du06]
+[testenv:pypy]
deps=
- nose
- docutils==0.6
+ simplejson
+ {[testenv]deps}
[testenv:du07]
deps=
- nose
docutils==0.7
+ {[testenv]deps}
[testenv:du08]
deps=
- nose
docutils==0.8.1
+ {[testenv]deps}
+
+[testenv:du09]
+deps=
+ docutils==0.9.1
+ {[testenv]deps}
+
+[testenv:du10]
+deps=
+ docutils==0.10.0
+ {[testenv]deps}