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: Icfddc419e3afde053c1a05a41497a28ceafb1464
This commit is contained in:
parent
078b3c6edd
commit
e68b3f4862
7
tox.ini
7
tox.ini
@ -13,18 +13,23 @@ deps = -r{toxinidir}/requirements.txt
|
||||
whitelist_externals = bash
|
||||
|
||||
[testenv:pep8]
|
||||
basepython = python3
|
||||
commands = flake8
|
||||
|
||||
[testenv:venv]
|
||||
basepython = python3
|
||||
commands = {posargs}
|
||||
|
||||
[testenv:checksyntax]
|
||||
basepython = python3
|
||||
commands = python gerrit_dash_creator/cmd/creator.py --check-only dashboards
|
||||
|
||||
[testenv:cover]
|
||||
basepython = python3
|
||||
commands = python setup.py testr --coverage --testr-args='{posargs}'
|
||||
|
||||
[testenv:docs]
|
||||
basepython = python3
|
||||
commands =
|
||||
# not happy with generated dashboard pages
|
||||
# doc8 -e .rst doc CONTRIBUTING.rst HACKING.rst README.rst
|
||||
@ -40,11 +45,13 @@ builtins = _
|
||||
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build
|
||||
|
||||
[testenv:dashboards]
|
||||
basepython = python3
|
||||
commands =
|
||||
bash -c "tools/generate_dashboards.sh"
|
||||
sphinx-build doc/source/ build/
|
||||
|
||||
[testenv:bindep]
|
||||
basepython = python3
|
||||
# Do not install any requirements. We want this to be fast and work even if
|
||||
# system dependencies are missing, since it's used to tell you what system
|
||||
# dependencies are missing! This also means that bindep must be installed
|
||||
|
Loading…
Reference in New Issue
Block a user