diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-09-16 12:04:54 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-10-04 11:39:30 -0400 |
commit | 3d8dd2ab07cc6d3149e7308e1e3be194a21364f6 (patch) | |
tree | bcc51cf0901a1b59c22770804f0cdeb621665288 /tox.ini | |
parent | 401471c1c51c2a99b31b0508578d04b4da03eebb (diff) | |
download | python-coveragepy-git-3d8dd2ab07cc6d3149e7308e1e3be194a21364f6.tar.gz |
Add 3.8 to tox
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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... |