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: I8ce3c403904ea1c6990f88d52c1c1a068aaed75a
(cherry picked from commit 8ca71f5b5b)
This commit is contained in:
imacdonn 2018-10-08 19:41:50 +00:00 committed by norman shen
parent bcea359d54
commit 263affd07f
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ deps =
# call ie: 'tox -epy27 -- --concurrency=4'
commands =
find . -ignore_readdir_race -type f -name "*.pyc" -delete
stestr run '{posargs}'
stestr run {posargs}
stestr slowest
whitelist_externals =