diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-30 12:15:00 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-08-30 12:15:00 -0400 |
commit | 6bb0098e9a317b256eb118880ef0732945864799 (patch) | |
tree | eec3313f25df6b57aeff10cc71f2aa5db6100ef7 | |
parent | f54b6f19a61c6e9bbfc5b05718c7e0805a872f77 (diff) | |
download | python-coveragepy-git-6bb0098e9a317b256eb118880ef0732945864799.tar.gz |
Try generic pypy on travis.
-rw-r--r-- | .travis.yml | 2 | ||||
-rw-r--r-- | tox.ini | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 36bf5d77..be931e7c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,4 +24,4 @@ script: - if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then tox -e py27; fi - if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then tox -e py33; fi - if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then tox -e py34; fi - - if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then tox -e pypy25; fi + - if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then tox -e pypy; fi @@ -37,12 +37,12 @@ setenv = usedevelop = True passenv = * +[testenv:pypy] +basepython = pypy + [testenv:pypy24] basepython = pypy2.4 -[testenv:pypy25] -basepython = pypy2.5 - [testenv:pypy26] basepython = pypy2.6 |