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: I92f08bc4cd2273738002999165498dac548cb421
This commit is contained in:
Nguyen Hai Truong 2018-11-03 21:28:50 +07:00
parent 76bd7e2722
commit 4e0a794a4d
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ commands = {posargs}
[testenv:cover]
basepython = python3
commands = python setup.py test --coverage --testr-args='{posargs}'
commands = python setup.py test --coverage --testr-args={posargs}
[testenv:docs]
basepython = python3