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 | f4eebaa9f47d46d5e9143030887c08ccce711dcb (patch) | |
tree | 628ca96f5aa3d394e4153b80b6d9daeed7358332 /tox.ini | |
parent | 769bf6028c20385e43fab7bc75e70f547fcc82ea (diff) | |
download | python-coveragepy-f4eebaa9f47d46d5e9143030887c08ccce711dcb.tar.gz |
Also test on PyPy 2.6.0
Diffstat (limited to 'tox.ini')
-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 |