2012-04-19 18:15:25 +00:00
|
|
|
[tox]
|
|
|
|
envlist = py26,py27,py32
|
|
|
|
|
2012-05-30 18:32:17 +00:00
|
|
|
[testenv:py26]
|
2012-04-19 18:15:25 +00:00
|
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
unittest2
|
2012-05-30 18:32:17 +00:00
|
|
|
mock
|
2012-05-30 19:32:53 +00:00
|
|
|
coverage
|
|
|
|
commands =
|
|
|
|
coverage run ./tests/runtests.py
|
2012-05-30 18:32:17 +00:00
|
|
|
|
|
|
|
[testenv:py27]
|
|
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
|
|
deps = -r{toxinidir}/requirements.txt
|
|
|
|
mock
|
2012-05-30 19:32:53 +00:00
|
|
|
coverage
|
2012-05-30 18:32:17 +00:00
|
|
|
commands =
|
2012-05-30 19:32:53 +00:00
|
|
|
coverage run ./tests/runtests.py
|
2012-04-19 18:15:25 +00:00
|
|
|
|
|
|
|
[testenv:py32]
|
|
|
|
basepython = python3.2
|
2012-05-30 22:07:12 +00:00
|
|
|
setenv = VIRTUAL_ENV={envdir}
|
|
|
|
deps =
|
|
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
mock
|
|
|
|
coverage
|
|
|
|
commands =
|
|
|
|
coverage run ./tests/runtests.py
|