fix tox python3 overrides

We want to default to running all tox environments under python 3, so
set the basepython value in each environment.

We do not want to specify a minor version number, because we do not
want to have to update the file every time we upgrade python.

We do not want to set the override once in testenv, because that
breaks the more specific versions used in default environments like
py35 and py36.

Change-Id: I6a4fb2fbd45b6292ee0222685211081289960726
This commit is contained in:
Vieri 2018-10-12 08:53:39 +00:00
parent a54fc82106
commit 6ef695d76e
1 changed files with 3 additions and 0 deletions

View File

@ -34,13 +34,16 @@ commands =
coverage xml -o cover/coverage.xml
[testenv:venv]
basepython = python3
commands = {posargs}
[testenv:releasenotes]
basepython = python3
commands =
sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[testenv:docs]
basepython = python3
commands = python setup.py build_sphinx
[flake8]