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: Idcd18d1cbed5db5538812cc5c225b5ef7ddcc893
This commit is contained in:
98k 2018-10-09 21:31:17 +00:00
parent a9c226a0fd
commit ff84f71140
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ deps =
-r{toxinidir}/test-requirements.txt
-r{toxinidir}/requirements.txt
commands =
stestr run '{posargs}'
stestr run {posargs}
stestr slowest
passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY