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: Id8b5f9e1e334609d39a58706ac2039240f0ce9cb
This commit is contained in:
Vieri 2018-10-09 13:34:55 +00:00
parent e64c6bb697
commit 49e5bbe55e
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ basepython = python3
setenv =
PYTHON=coverage run --source oslo_db --parallel-mode
commands =
stestr run '{posargs}'
stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml