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: I5da74599cefe7769e899e318dd393d864a6a1fef
This commit is contained in:
Vieri 2018-10-09 13:49:28 +00:00
parent f83d565ee9
commit 7ab797c0e6

View File

@ -16,7 +16,7 @@ setenv =
OS_TEST_PATH = ./freezerclient/tests/unit
commands =
find . -type f -name "*.py[c|o]" -delete
stestr run '{posargs}'
stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml