summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2016-08-03 13:03:01 -0400
committerNed Batchelder <ned@nedbatchelder.com>2016-08-03 13:03:01 -0400
commitbdd9842239a79d62ddf7758073c7c2d25e31b162 (patch)
treebc05a3b3feafd430c371399a885041ca5bba4e19 /tox.ini
parentabedc7f2292d0f81caebfbe8bea09cb28a7f679f (diff)
downloadpython-coveragepy-bdd9842239a79d62ddf7758073c7c2d25e31b162.tar.gz
Add support for PyPy3 5.2 alpha 1
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini15
1 files changed, 6 insertions, 9 deletions
diff --git a/tox.ini b/tox.ini
index 970a738..4c96820 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,7 +2,7 @@
# For details: https://bitbucket.org/ned/coveragepy/src/default/NOTICE.txt
[tox]
-envlist = py{26,27,33,34,35,36}, pypy{40,51,3_24}, doc
+envlist = py{26,27,33,34,35,36}, pypy{40,51,3_24,3_52}, doc
skip_missing_interpreters = True
[testenv]
@@ -21,7 +21,7 @@ deps =
py{26,27,33,34,35,36}: eventlet==0.19.0
py{26,27,33,34,35,36}: greenlet==0.4.10
# setuptools no longer supports Python 3.2
- pypy3_24: setuptools==21.1.0
+ pypy3_{24,52}: setuptools==21.1.0
# Windows can't update the pip version with pip running, so use Python
# to install things.
@@ -29,7 +29,7 @@ install_command = python -m pip install -U {opts} {packages}
passenv = *
setenv =
- pypy,pypy{24,26,40,51,3_24}: COVERAGE_NO_EXTENSION=no C extension under PyPy
+ pypy,pypy{40,51,3_24,3_52}: COVERAGE_NO_EXTENSION=no C extension under PyPy
# Something (pip? setuptools?) chatters about 3.2 support going away.
pypy3_24: PYTHONWARNINGS=ignore:::pkg_resources
@@ -56,12 +56,6 @@ install_command = python -m pip.__main__ install -U {opts} {packages}
# the other environments...
basepython = pypy
-[testenv:pypy24]
-basepython = pypy2.4
-
-[testenv:pypy26]
-basepython = pypy2.6
-
[testenv:pypy3_24]
basepython = pypy3-2.4
@@ -71,6 +65,9 @@ basepython = pypy4.0
[testenv:pypy51]
basepython = pypy5.1
+[testenv:pypy3_52]
+basepython = pypy3-5.2
+
[testenv:doc]
# Build the docs so we know if they are successful. We build twice: once with
# -q to get all warnings, and once with -QW to get a success/fail status