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: I4fdc0f122ce16390ffd66f1e0fb92837b5b64bec
This commit is contained in:
98k 2018-10-09 20:56:14 +00:00
parent a8bcc17b10
commit 304e2c9089
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ setenv =
commands = commands =
coverage erase coverage erase
find . -type f -name "*.pyc" -delete find . -type f -name "*.pyc" -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