diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py26, py27, py32, py33, py34, pypy22, pypy23, pypy24 +envlist = py26, py27, py32, py33, py34, pypy22, pypy23, pypy24, pypy3_23, pypy3_24 [testenv] commands = @@ -75,3 +75,15 @@ basepython = pypy2.4 # PyPy has no C extensions setenv = COVERAGE_NO_EXTENSION=1 + +[testenv:pypy3_23] +basepython = pypy3-2.3 +# PyPy has no C extensions +setenv = + COVERAGE_NO_EXTENSION=1 + +[testenv:pypy3_24] +basepython = pypy3-2.4 +# PyPy has no C extensions +setenv = + COVERAGE_NO_EXTENSION=1 |