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:
parent
7929594226
commit
8ca71f5b5b
2
tox.ini
2
tox.ini
@ -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 =
|
||||
|
Loading…
x
Reference in New Issue
Block a user