Merge "fix tox python3 overrides"

This commit is contained in:
Zuul 2018-07-19 14:57:32 +00:00 committed by Gerrit Code Review
commit 22a9d1d59d
1 changed files with 5 additions and 0 deletions

View File

@ -21,14 +21,17 @@ commands = {[unit_tests]commands}
commands = python manage.py test {posargs} --settings=neutron_fwaas_dashboard.test.settings
[testenv:pep8]
basepython = python3
commands =
flake8 {posargs}
{envpython} {toxinidir}/manage.py extract_messages --module neutron_fwaas_dashboard --verbosity 0 --check-only
[testenv:venv]
basepython = python3
commands = {posargs}
[testenv:cover]
basepython = python3
commands =
coverage erase
coverage run {toxinidir}/manage.py test neutron_fwaas_dashboard --settings=neutron_fwaas_dashboard.test.settings {posargs}
@ -42,9 +45,11 @@ commands =
{[unit_tests]commands}
[testenv:docs]
basepython = python3
commands = python setup.py build_sphinx
[testenv:releasenotes]
basepython = python3
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[flake8]