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: Ie0b56212cad8d9756c2043a4483c607101491a14
This commit is contained in:
2
tox.ini
2
tox.ini
@@ -39,7 +39,7 @@ basepython = python3
|
|||||||
setenv =
|
setenv =
|
||||||
PYTHON=coverage run --source keystoneclient --parallel-mode
|
PYTHON=coverage run --source keystoneclient --parallel-mode
|
||||||
commands =
|
commands =
|
||||||
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
|
||||||
|
Reference in New Issue
Block a user