diff options
-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 |