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: I7f47ce264dffd4de203d59def1d4c9e2949a9fb8
This commit is contained in:
confi-surya 2018-10-09 14:28:13 +05:30
parent 80ea936e51
commit e708492c7d

View File

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