summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tox.ini57
1 files changed, 42 insertions, 15 deletions
diff --git a/tox.ini b/tox.ini
index d0f1c55d..c757496a 100644
--- a/tox.ini
+++ b/tox.ini
@@ -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