diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-06-09 17:13:39 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-06-09 17:13:39 -0400 |
commit | ed3f043fa107f591922b858340c678f61fec8652 (patch) | |
tree | 441bee4d2cb8e7038c524b052e9de6d66042561b | |
parent | 7f3ba33f370bac8fac7377cf4b78184b79f8fab4 (diff) | |
download | python-coveragepy-git-ed3f043fa107f591922b858340c678f61fec8652.tar.gz |
Also test on PyPy 2.6.0
-rw-r--r-- | tox.ini | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py26, py27, py33, py34, py35, pypy24, pypy3_24 +envlist = py26, py27, py33, py34, py35, pypy24, pypy26, pypy3_24 skip_missing_interpreters = True [testenv] @@ -33,13 +33,16 @@ deps = py26,py27,py33,py34,py35: greenlet setenv = - pypy24,pypy3_24: COVERAGE_NO_EXTENSION=no C extensions under PyPy + pypy24,pypy26,pypy3_24: COVERAGE_NO_EXTENSION=no C extensions under PyPy usedevelop = True [testenv:pypy24] basepython = pypy2.4 +[testenv:pypy26] +basepython = pypy2.6 + [testenv:pypy3_24] basepython = pypy3-2.4 |