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: I60a754d28ca56fb7f995d0af5c03a7734c5ba8b1
This commit is contained in:
Nguyen Van Trung 2018-10-09 10:04:33 +07:00
parent 9881cbbcc2
commit b1c6d533d7
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ setenv =
PYTHON=coverage run --source freezer --parallel-mode
commands =
find . -type f -name "*.pyc" -delete
stestr run '{posargs}'
stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml