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: I4cfa741310c5e55fb88eb4f24f5a2ed3baa2b88c
Closes-Bug:  #1801695
This commit is contained in:
huang.zhiping 2018-11-05 09:35:14 +00:00 committed by Aakarsh
parent 6746c0c948
commit c70837b1b7
1 changed files with 4 additions and 0 deletions

View File

@ -36,9 +36,11 @@ commands =
python -m twine check dist/*
[testenv:pep8]
basepython = python3
commands = flake8 {posargs}
[testenv:venv]
basepython = python3
commands = {posargs}
[testenv:py27]
@ -57,9 +59,11 @@ commands = pytest {posargs}
commands = python setup.py test --coverage --testr-args='{posargs}'
[testenv:docs]
basepython = python3
commands = python setup.py build_sphinx
[testenv:debug]
basepython = python3
commands = oslo_debug_helper {posargs}
[flake8]