diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-24 15:35:51 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-01-24 15:35:51 -0500 |
commit | 203600b512fe3a038f6ff07286e1c06bb2d6d7d8 (patch) | |
tree | 9ac8862ed11a86f4562888f0d5a808f6a3c35b46 | |
parent | 9c259f7e508350fb2d715fe24d47f1a320f0fe47 (diff) | |
download | python-coveragepy-git-203600b512fe3a038f6ff07286e1c06bb2d6d7d8.tar.gz |
Put back the pypy environment for travis
-rw-r--r-- | tox.ini | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -22,7 +22,7 @@ deps = passenv = * setenv = - pypy{24,26,40,3_24}: COVERAGE_NO_EXTENSION=no C extension under PyPy + pypy,pypy{24,26,40,3_24}: COVERAGE_NO_EXTENSION=no C extension under PyPy commands = python setup.py --quiet clean develop @@ -39,6 +39,11 @@ commands = python setup.py --quiet build_ext --inplace python igor.py test_with_tracer c {posargs} +[testenv:pypy] +# The "pypy" environment is for Travis. Probably can make Travis use one of +# the other environments... +basepython = pypy + [testenv:pypy24] basepython = pypy2.4 |