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: I946210d26cbdcb303b3eca623022608afc141fe3
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
This commit is contained in:
Doug Hellmann 2018-06-06 15:27:00 -04:00
parent 16465ea109
commit 3115cdca8f
1 changed files with 6 additions and 0 deletions

View File

@ -32,26 +32,32 @@ commands =
coverage report
[testenv:debug]
basepython = python3
commands =
oslo_debug_helper -t {toxinidir}/tests {posargs}
[testenv:docs]
basepython = python3
commands =
rm -rf doc/build
python setup.py build_sphinx
[testenv:bandit]
basepython = python3
commands = bandit -r monascastatsd -s B311 -n5 -x monascastatsd/tests
[testenv:flake8]
basepython = python3
commands = flake8 monascastatsd
[testenv:pep8]
basepython = python3
commands =
{[testenv:flake8]commands}
{[testenv:bandit]commands}
[testenv:venv]
basepython = python3
commands = {posargs}
[flake8]