diff options
author | Marc Abramowitz <marc@marc-abramowitz.com> | 2012-06-22 01:06:36 -0700 |
---|---|---|
committer | Marc Abramowitz <marc@marc-abramowitz.com> | 2012-06-22 01:06:36 -0700 |
commit | 566df972615f913703f9f76161ac197ad52745b4 (patch) | |
tree | 87f81fcd47b496c897818239cb85af30b3c07a41 | |
parent | fbbd249b4a5946d0dfa46b0013f3cf91a93a8f1e (diff) | |
download | python-coveragepy-git-566df972615f913703f9f76161ac197ad52745b4.tar.gz |
Tweaks to tox.ini so that these are much less test failures
-rw-r--r-- | tox.ini | 57 |
1 files changed, 42 insertions, 15 deletions
@@ -7,59 +7,86 @@ 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 [testenv] +setenv = PYTHONPATH=test/eggsrc commands = - make --quiet testdata - nosetests + {envpython} setup.py -q clean develop + nosetests -w {toxinidir} -e test_farm deps = nose [testenv:py24_py] basepython = python2.4 -setenv = COVERAGE_TEST_TRACER=py +setenv = + {[testenv]setenv} + COVERAGE_TEST_TRACER=py [testenv:py24_c] basepython = python2.4 -setenv = COVERAGE_TEST_TRACER=c +setenv = + {[testenv]setenv} + COVERAGE_TEST_TRACER=c [testenv:py25_py] basepython = python2.5 -setenv = COVERAGE_TEST_TRACER=py +setenv = + {[testenv]setenv} + COVERAGE_TEST_TRACER=py [testenv:py25_c] basepython = python2.5 -setenv = COVERAGE_TEST_TRACER=c +setenv = + {[testenv]setenv} + COVERAGE_TEST_TRACER=c [testenv:py26_py] basepython = python2.6 -setenv = COVERAGE_TEST_TRACER=py +setenv = + {[testenv]setenv} + COVERAGE_TEST_TRACER=py [testenv:py26_c] basepython = python2.6 -setenv = COVERAGE_TEST_TRACER=c +setenv = + {[testenv]setenv} + COVERAGE_TEST_TRACER=c [testenv:py27_py] basepython = python2.7 -setenv = COVERAGE_TEST_TRACER=py +setenv = + {[testenv]setenv} + COVERAGE_TEST_TRACER=py [testenv:py27_c] basepython = python2.7 -setenv = COVERAGE_TEST_TRACER=c +setenv = + {[testenv]setenv} + COVERAGE_TEST_TRACER=c [testenv:py32_py] basepython = python3.2 -setenv = COVERAGE_TEST_TRACER=py +setenv = + {[testenv]setenv} + COVERAGE_TEST_TRACER=py [testenv:py32_c] basepython = python3.2 -setenv = COVERAGE_TEST_TRACER=c +setenv = + {[testenv]setenv} + COVERAGE_TEST_TRACER=c [testenv:py33_py] basepython = python3.3 -setenv = COVERAGE_TEST_TRACER=py +setenv = + {[testenv]setenv} + COVERAGE_TEST_TRACER=py [testenv:py33_c] basepython = python3.3 -setenv = COVERAGE_TEST_TRACER=c +setenv = + {[testenv]setenv} + COVERAGE_TEST_TRACER=c [testenv:pypy_py] basepython = pypy -setenv = COVERAGE_TEST_TRACER=py +setenv = + {[testenv]setenv} + COVERAGE_TEST_TRACER=py |