summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2018-09-16 12:04:54 -0400
committerNed Batchelder <ned@nedbatchelder.com>2018-10-04 11:39:30 -0400
commit3d8dd2ab07cc6d3149e7308e1e3be194a21364f6 (patch)
treebcc51cf0901a1b59c22770804f0cdeb621665288
parent401471c1c51c2a99b31b0508578d04b4da03eebb (diff)
downloadpython-coveragepy-git-3d8dd2ab07cc6d3149e7308e1e3be194a21364f6.tar.gz
Add 3.8 to tox
-rw-r--r--tox.ini9
1 files changed, 6 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index 0eb9f698..55819e3e 100644
--- a/tox.ini
+++ b/tox.ini
@@ -2,7 +2,7 @@
# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
[tox]
-envlist = py{27,34,35,36,37}, pypy{2,3}, doc, lint
+envlist = py{27,34,35,36,37,38}, pypy{2,3}, doc, lint
skip_missing_interpreters = {env:COVERAGE_SKIP_MISSING_INTERPRETERS:True}
toxworkdir = {env:TOXWORKDIR:.tox}
@@ -17,8 +17,8 @@ deps =
setuptools==40.0.0
# gevent 1.3 causes a failure: https://bitbucket.org/ned/coveragepy/issues/663/gevent-132-on-windows-fails
py{27,34,35,36}: gevent==1.2.2
- py{27,34,35,36,37}: eventlet==0.24.1
- py{27,34,35,36,37}: greenlet==0.4.14
+ py{27,34,35,36,37,38}: eventlet==0.24.1
+ py{27,34,35,36,37,38}: greenlet==0.4.14
# Windows can't update the pip version with pip running, so use Python
# to install things.
@@ -45,6 +45,9 @@ commands =
python setup.py --quiet build_ext --inplace
python igor.py test_with_tracer c {posargs}
+[testenv:py38]
+basepython = python3.8
+
[testenv:pypy]
# The "pypy" environment is for Travis. Probably can make Travis use one of
# the other environments...