diff options
author | Marc Abramowitz <marc@marc-abramowitz.com> | 2012-07-07 08:39:55 -0700 |
---|---|---|
committer | Marc Abramowitz <marc@marc-abramowitz.com> | 2012-07-07 08:39:55 -0700 |
commit | af4c4442f0e67ec6dd2a914604fc37d43f91fd1d (patch) | |
tree | 03fc11b5cde541a8a1c04329437fe6a018a6e661 | |
parent | 3d549713359ad4bbaee913f8de74e8ce82603f13 (diff) | |
download | python-coveragepy-af4c4442f0e67ec6dd2a914604fc37d43f91fd1d.tar.gz |
Simplified tox.ini
-rw-r--r-- | tox.ini | 88 |
1 files changed, 7 insertions, 81 deletions
@@ -4,89 +4,15 @@ # and then run "tox" from this directory. [tox] -envlist = py24_py, py24_c, py25_py, py25_c, py26_py, py26_c, py27_py, py27_c, py32_py, py32_c, py33_py, py33_c, pypy_py +envlist = py24, py25, py26, py27, py32, py33, pypy [testenv] setenv = PYTHONPATH=test/eggsrc commands = - {envpython} setup.py -q clean develop - nosetests -w {toxinidir} -e test_farm + {envpython} setup.py clean + {envpython} setup.py build_ext --inplace + {envpython} setup.py develop + make testdata + env COVERAGE_TEST_TRACER="py" nosetests -w {toxinidir} + env COVERAGE_TEST_TRACER="c" nosetests -w {toxinidir} deps = nose - -[testenv:py24_py] -basepython = python2.4 -setenv = - {[testenv]setenv} - COVERAGE_TEST_TRACER=py - -[testenv:py24_c] -basepython = python2.4 -setenv = - {[testenv]setenv} - COVERAGE_TEST_TRACER=c - -[testenv:py25_py] -basepython = python2.5 -setenv = - {[testenv]setenv} - COVERAGE_TEST_TRACER=py - -[testenv:py25_c] -basepython = python2.5 -setenv = - {[testenv]setenv} - COVERAGE_TEST_TRACER=c - -[testenv:py26_py] -basepython = python2.6 -setenv = - {[testenv]setenv} - COVERAGE_TEST_TRACER=py - -[testenv:py26_c] -basepython = python2.6 -setenv = - {[testenv]setenv} - COVERAGE_TEST_TRACER=c - -[testenv:py27_py] -basepython = python2.7 -setenv = - {[testenv]setenv} - COVERAGE_TEST_TRACER=py - -[testenv:py27_c] -basepython = python2.7 -setenv = - {[testenv]setenv} - COVERAGE_TEST_TRACER=c - -[testenv:py32_py] -basepython = python3.2 -setenv = - {[testenv]setenv} - COVERAGE_TEST_TRACER=py - -[testenv:py32_c] -basepython = python3.2 -setenv = - {[testenv]setenv} - COVERAGE_TEST_TRACER=c - -[testenv:py33_py] -basepython = python3.3 -setenv = - {[testenv]setenv} - COVERAGE_TEST_TRACER=py - -[testenv:py33_c] -basepython = python3.3 -setenv = - {[testenv]setenv} - COVERAGE_TEST_TRACER=c - -[testenv:pypy_py] -basepython = pypy -setenv = - {[testenv]setenv} - COVERAGE_TEST_TRACER=py |