Don't quote {posargs} in tox.ini

Quotes around {posargs} cause the entire string to be combined into one
arg that gets passed to stestr. This prevents passing multiple args
(e.g. '--concurrency=16 some-regex')

Change-Id: Ie4d4b59ec6cf383875613b2fce6a7db0fdeab1db
This commit is contained in:
malei 2018-10-21 22:59:13 +08:00 committed by melissaml
parent 8ccb5c4a36
commit a3b5734147
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ basepython = python3
setenv =
PYTHON=coverage run --source oslo_i18n --parallel-mode
commands =
stestr run '{posargs}'
stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml