Merge "fix tox python3 overrides"

This commit is contained in:
Zuul 2018-08-26 08:32:48 +00:00 committed by Gerrit Code Review
commit 87a6f18dbf
1 changed files with 7 additions and 0 deletions

View File

@ -36,12 +36,15 @@ basepython = python3.5
commands = oslo_debug_helper -t kuryr_libnetwork/tests {posargs} commands = oslo_debug_helper -t kuryr_libnetwork/tests {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
setenv = setenv =
VIRTUAL_ENV={envdir} VIRTUAL_ENV={envdir}
PYTHON=coverage run --source kuryr_libnetwork --parallel-mode PYTHON=coverage run --source kuryr_libnetwork --parallel-mode
@ -53,6 +56,7 @@ commands =
coverage report coverage report
[testenv:docs] [testenv:docs]
basepython = python3
commands = python setup.py build_sphinx commands = python setup.py build_sphinx
[flake8] [flake8]
@ -63,6 +67,7 @@ show-source = true
exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build,tools,.ropeproject,rally-scenarios,releasenotes exclude = .venv,.git,.tox,dist,doc,*lib/python*,*egg,build,tools,.ropeproject,rally-scenarios,releasenotes
[testenv:pylint] [testenv:pylint]
basepython = python3
deps = deps =
{[testenv]deps} {[testenv]deps}
pylint pylint
@ -74,9 +79,11 @@ import_exceptions = kuryr.lib._i18n
local-check-factory = neutron_lib.hacking.checks.factory local-check-factory = neutron_lib.hacking.checks.factory
[testenv:genconfig] [testenv:genconfig]
basepython = python3
commands = {toxinidir}/tools/generate_config_file_samples.sh commands = {toxinidir}/tools/generate_config_file_samples.sh
[testenv:releasenotes] [testenv:releasenotes]
basepython = python3
commands = sphinx-build -a -W -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html commands = sphinx-build -a -W -E -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[testenv:lower-constraints] [testenv:lower-constraints]