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: Ie3379b54b354984348a10ec32bf6d245d1c04847
Closes-Bug: #1801816
This commit is contained in:
98k 2018-10-09 21:35:40 +00:00 committed by Xiyuan Wang
parent 902103fb29
commit b736c7cf0d
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ commands = sphinx-build -b spelling doc/source doc/build/spelling
setenv =
PYTHON=coverage run --source specs --parallel-mode
commands =
stestr run '{posargs}'
stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml