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:
Vieri 2018-10-09 13:54:35 +00:00
parent ffabfba5a8
commit 548bc8dd92
1 changed files with 1 additions and 1 deletions

View File

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