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
This commit is contained in:
imacdonn 2018-10-08 19:41:50 +00:00
parent 7929594226
commit 8ca71f5b5b
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ deps = -r{toxinidir}/test-requirements.txt
# 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 =