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: I0d7c93b0c7e48dd86f3e1591596ca6e10caff196
This commit is contained in:
qingszhao 2018-06-12 00:40:15 +08:00
parent 59247628c4
commit 3e4f2e5ee3
1 changed files with 4 additions and 0 deletions

View File

@ -13,18 +13,22 @@ deps = -r{toxinidir}/requirements.txt
commands = python setup.py test --slowest --testr-args='{posargs}' commands = python setup.py test --slowest --testr-args='{posargs}'
[testenv:pep8] [testenv:pep8]
basepython = python3
commands = flake8 commands = flake8
[testenv:venv] [testenv:venv]
basepython = python3
commands = {posargs} commands = {posargs}
[testenv:cover] [testenv:cover]
basepython = python3
commands = commands =
coverage erase coverage erase
python setup.py test --coverage --coverage-package-name=grafana_dashboards --testr-args='{posargs}' python setup.py test --coverage --coverage-package-name=grafana_dashboards --testr-args='{posargs}'
coverage report coverage report
[testenv:docs] [testenv:docs]
basepython = python3
commands = python setup.py build_sphinx commands = python setup.py build_sphinx
[flake8] [flake8]