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: Idf3ecc193e91c65010a0de08a02e01efcf1bd3a7
This commit is contained in:
Vieri 2018-10-09 13:43:21 +00:00
parent 6651c8ffce
commit 2956fbacc2
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ deps =
commands =
rm -f .testrepository/times.dbm
coverage erase
stestr run '{posargs}'
stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml