Merge "Don't quote {posargs} in tox.ini"

This commit is contained in:
Zuul 2018-10-10 17:34:45 +00:00 committed by Gerrit Code Review
commit f12fb69cb2
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
find {toxinidir} -type f -not -path '{toxinidir}/.tox/*' -not -path '*/__pycache__/*' -name '*.py[c|o]' -delete
stestr run '{posargs}'
stestr run {posargs}
stestr slowest
whitelist_externals =
@ -58,7 +58,7 @@ setenv =
commands =
coverage erase
find {toxinidir} -not -path '{toxinidir}/.tox/*' -not -path '*/__pycache__/*' -name '*.py[c|o]' -delete
stestr run '{posargs}'
stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml