diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2018-04-03 15:11:22 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2018-04-03 15:11:22 -0400 |
commit | 83d9cf29773b77e397b11c4e47d6c447a4dd9ef1 (patch) | |
tree | 22847f5ac918b85a5564b08022f775cdc751725f | |
parent | e4dd841be689c46f6104780d7619bdfe4213a8a8 (diff) | |
download | python-coveragepy-git-83d9cf29773b77e397b11c4e47d6c447a4dd9ef1.tar.gz |
Use tox 3.0.0
-rw-r--r-- | requirements/tox.pip | 2 | ||||
-rw-r--r-- | tox.ini | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/requirements/tox.pip b/requirements/tox.pip index b57aa388..3fb7faf8 100644 --- a/requirements/tox.pip +++ b/requirements/tox.pip @@ -1,4 +1,4 @@ # The version of tox used by coverage.py -tox==2.9.1 +tox==3.0.0 # Adds env recreation on requirements file changes. tox-battery==0.5 @@ -58,8 +58,12 @@ commands = python igor.py test_with_tracer c {posargs} [testenv:py26] +basepython = python2.6 install_command = python -m pip.__main__ install -U {opts} {packages} +[testenv:py33] +basepython = python3.3 + [testenv:pypy] # The "pypy" environment is for Travis. Probably can make Travis use one of # the other environments... |