- fixes to tox

This commit is contained in:
L.C. Rees 2012-05-30 12:32:17 -06:00
parent 93bacd1b87
commit 64f0a27ca1

13
tox.ini
View file

@ -1,11 +1,20 @@
[tox]
envlist = py26,py27,py32
[testenv]
[testenv:py26]
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
unittest2
commands = bash -c 'cd tests && python runtests.py'
mock
commands =
bash -c 'cd tests && python runtests.py'
[testenv:py27]
setenv = VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
mock
commands =
bash -c 'cd tests && python runtests.py'
[testenv:py32]
basepython = python3.2