Merge "fix tox python3 overrides"

This commit is contained in:
Zuul 2018-07-03 04:11:40 +00:00 committed by Gerrit Code Review
commit 3efef77a24
1 changed files with 7 additions and 0 deletions

View File

@ -18,6 +18,7 @@ commands = ostestr {posargs}
whitelist_externals = ostestr
[testenv:unit-tips]
basepython = python3
commands =
pip install -q -e "git+file://{toxinidir}/../cliff#egg=cliff"
pip install -q -e "git+file://{toxinidir}/../keystoneauth#egg=keystoneauth"
@ -28,23 +29,29 @@ commands =
whitelist_externals = ostestr
[testenv:pep8]
basepython = python3
commands = flake8
[testenv:venv]
basepython = python3
commands = {posargs}
[testenv:cover]
basepython = python3
commands =
python setup.py test --coverage --coverage-package-name=osc_lib --testr-args='{posargs}'
coverage report
[testenv:debug]
basepython = python3
commands = oslo_debug_helper -t osc_lib/tests {posargs}
[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]