set default python to python3

Set the default python to python3 except for the py27 environment. We
have to set that explicitly to override the new default.

Change-Id: I1ec3c534cdc0a4850d5873eb5ec2a70701cb4141
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2018-04-13 16:02:29 -04:00
parent 880f29d72e
commit 2c55731251
1 changed files with 4 additions and 1 deletions

View File

@ -3,6 +3,7 @@ minversion = 2.0
envlist = py35,py27,pep8
[testenv]
basepython = python3
setenv =
VIRTUAL_ENV={envdir}
install_command = pip install {opts} {packages}
@ -11,6 +12,9 @@ deps =
-r{toxinidir}/test-requirements.txt
commands = python setup.py testr --slowest --testr-args='{posargs}'
[testenv:py27]
basepython = python2.7
[testenv:pep8]
commands =
flake8
@ -50,7 +54,6 @@ deps = -r{toxinidir}/doc/requirements.txt
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[testenv:lower-constraints]
basepython = python3
deps =
-c{toxinidir}/lower-constraints.txt
-r{toxinidir}/test-requirements.txt