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: I068ac92a340a5a31af53f77b69a702c5c138b4c8
This commit is contained in:
melissaml 2018-10-21 22:47:53 +08:00
parent 4f45ede78c
commit eb6eb9e683
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ setenv =
PYTHON=coverage run --source monasca_common --parallel-mode
commands =
coverage erase
stestr run '{posargs}'
stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml