Codebase list python-castellan / 27c6f63
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: I7e3f0bf2f5999cc0f4b54f68da33debccf077f43 Nguyen Van Trung 5 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
4949 setenv =
5050 PYTHON=coverage run --source $project --parallel-mode
5151 commands =
52 stestr run '{posargs}'
52 stestr run {posargs}
5353 coverage combine
5454 coverage html -d cover
5555 coverage xml -o cover/coverage.xml