Merge "tox: Group targets and tool configuration together"

This commit is contained in:
Zuul 2018-06-15 23:50:00 +00:00 committed by Gerrit Code Review
commit c01fc8fc5c
1 changed files with 11 additions and 11 deletions

22
tox.ini
View File

@ -29,6 +29,10 @@ commands = {posargs}
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
[testenv:cover]
basepython = python3
commands =
@ -39,6 +43,13 @@ commands =
basepython = python3
commands = bandit -r oslo_log -x tests -n5
[testenv:lower-constraints]
basepython = python3
deps =
-c{toxinidir}/lower-constraints.txt
-r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt
[flake8]
# E123, E125 skipped as they are invalid PEP-8.
@ -48,14 +59,3 @@ exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,build,__init__.py
[hacking]
import_exceptions = oslo_log._i18n
[testenv:releasenotes]
basepython = python3
commands = sphinx-build -a -E -W -d releasenotes/build/doctrees -b html releasenotes/source releasenotes/build/html
[testenv:lower-constraints]
basepython = python3
deps =
-c{toxinidir}/lower-constraints.txt
-r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt