summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-10-11 22:09:40 -0400
committerNed Batchelder <ned@nedbatchelder.com>2014-10-11 22:09:40 -0400
commitc84ee62303ba0a4feb12d36db5e1bb2f0938a9c6 (patch)
tree8464ed1e9309a66ea57751a18aa205cf10f2506a
parent75231ecb8f1b2287662328819fab91780e141cda (diff)
downloadpython-coveragepy-c84ee62303ba0a4feb12d36db5e1bb2f0938a9c6.tar.gz
Test on specific versions of PyPy: 2.2, 2.3, 2.4
-rw-r--r--tox.ini17
1 files changed, 15 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index 6610b5f..96f97dc 100644
--- a/tox.ini
+++ b/tox.ini
@@ -4,7 +4,7 @@
# and then run "tox" from this directory.
[tox]
-envlist = py26, py27, py32, py33, py34, pypy
+envlist = py26, py27, py32, py33, py34, pypy22, pypy23, pypy24
[testenv]
commands =
@@ -58,7 +58,20 @@ deps =
{[testenv]deps}
greenlet
-[testenv:pypy]
+[testenv:pypy22]
+basepython = pypy2.2
+# PyPy has no C extensions
+setenv =
+ COVERAGE_NO_EXTENSION=1
+
+[testenv:pypy23]
+basepython = pypy2.3
+# PyPy has no C extensions
+setenv =
+ COVERAGE_NO_EXTENSION=1
+
+[testenv:pypy24]
+basepython = pypy2.4
# PyPy has no C extensions
setenv =
COVERAGE_NO_EXTENSION=1