summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini26
1 files changed, 12 insertions, 14 deletions
diff --git a/tox.ini b/tox.ini
index 4a7043c..c6b7477 100644
--- a/tox.ini
+++ b/tox.ini
@@ -3,37 +3,35 @@ envlist = py24,py25,py26,py27,py31,pypy,py32,jython
[testenv]
deps=unittest2
-commands=unit2 discover []
+commands={envbindir}/unit2 discover []
[testenv:py26]
commands=
- unit2 discover []
- sphinx-build -b doctest docs html
- sphinx-build docs html
-deps =
+ {envbindir}/unit2 discover []
+ {envbindir}/sphinx-build -b doctest docs html
+ {envbindir}/sphinx-build docs html
+deps =
unittest2
sphinx
[testenv:py27]
commands=
- unit2 discover []
- sphinx-build -b doctest docs html
-deps =
+ {envbindir}/unit2 discover []
+ {envbindir}/sphinx-build -b doctest docs html
+deps =
unittest2
sphinx
[testenv:py31]
-commands=
- unit2 discover []
-deps =
+deps =
unittest2py3k
[testenv:py32]
commands=
- python -m unittest discover []
-deps =
+ {envbindir}/python -m unittest discover []
+deps =
[testenv:pypy]
deps=unittest2
-commands=unit2 discover [] \ No newline at end of file
+commands={envbindir}/unit2 discover []