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-06 12:19:50 -0400
commit7043e3ee5cfc85acbab79f6449e95c8cb354a1f2 (patch)
tree9ff28d7d35a7036cf407fdba8bd30c9701e0be71
parent16ecc0e1174e65aa4eb33c86d619349481315b15 (diff)
downloadpython-coveragepy-git-7043e3ee5cfc85acbab79f6449e95c8cb354a1f2.tar.gz
Add 3.8 to tox
(cherry picked from commit 3d8dd2ab07cc6d3149e7308e1e3be194a21364f6)
-rw-r--r--tox.ini9
1 files changed, 6 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index 8a037e3d..fd6c9ae1 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,37}, pypy{2,3}, doc, lint
+envlist = py{26,27,33,34,35,36,37,38}, pypy{2,3}, doc, lint
skip_missing_interpreters = {env:COVERAGE_SKIP_MISSING_INTERPRETERS:True}
toxworkdir = {env:TOXWORKDIR:.tox}
@@ -22,8 +22,8 @@ deps =
py26: unittest2==1.1.0
py{27,33,34,35,36}: gevent==1.2.2
py26: eventlet==0.21.0
- py{27,33,34,35,36,37}: eventlet==0.22.0
- py{26,27,33,34,35,36,37}: greenlet==0.4.13
+ py{27,33,34,35,36,37,38}: eventlet==0.22.0
+ py{26,27,33,34,35,36,37,38}: greenlet==0.4.13
# Windows can't update the pip version with pip running, so use Python
# to install things.
@@ -60,6 +60,9 @@ commands =
[testenv:py26]
install_command = python -m pip.__main__ install -U {opts} {packages}
+[testenv:py38]
+basepython = python3.8
+
[testenv:pypy]
# The "pypy" environment is for Travis. Probably can make Travis use one of
# the other environments...