blob: 7230b01648b2bc4ff36cc3d3bb6dc6b37719fae3 (
plain)
1
2
3
4
5
6
7
8
9
|
[tox]
envlist = py27,py32
[testenv]
deps=nose
changedir = {toxworkdir}/{envname}
commands = {envpython} {toxinidir}/setup-tests.py --quiet install
{envpython} {envbindir}/run-tests.py {posargs} {toxworkdir}/{envname}/Lib/site-packages/tests
# for tox v1.4.3 replace `{toxworkdir}/{envname}/Lib/site-packages/tests` with `{envsitepackagesdir}/tests`
|