diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-10-11 22:09:40 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-10-11 22:09:40 -0400 |
commit | 355782efef23af319547bfa8346e205e7628f13d (patch) | |
tree | 8b11461e1d2b924af2278774f07f38b564694f9a | |
parent | 022d2c0e0dd1b20f4797236692d8bf162d99d5da (diff) | |
download | python-coveragepy-git-355782efef23af319547bfa8346e205e7628f13d.tar.gz |
Test on specific versions of PyPy: 2.2, 2.3, 2.4
-rw-r--r-- | tox.ini | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -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 |