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:
parent
f83d565ee9
commit
7ab797c0e6
2
tox.ini
2
tox.ini
@ -16,7 +16,7 @@ setenv =
|
|||||||
OS_TEST_PATH = ./freezerclient/tests/unit
|
OS_TEST_PATH = ./freezerclient/tests/unit
|
||||||
commands =
|
commands =
|
||||||
find . -type f -name "*.py[c|o]" -delete
|
find . -type f -name "*.py[c|o]" -delete
|
||||||
stestr run '{posargs}'
|
stestr run {posargs}
|
||||||
coverage combine
|
coverage combine
|
||||||
coverage html -d cover
|
coverage html -d cover
|
||||||
coverage xml -o cover/coverage.xml
|
coverage xml -o cover/coverage.xml
|
||||||
|
Loading…
x
Reference in New Issue
Block a user