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: Ia9cf4ec0b6cd5addb81dd1ff31d7e930040ddc44
This commit is contained in:
Nguyen Van Trung 2018-10-09 09:56:12 +07:00
parent 5dcf504c70
commit feb8219094
1 changed files with 3 additions and 3 deletions

View File

@ -30,20 +30,20 @@ passenv = http_proxy
[testenv:py27]
commands =
{[testenv]commands}
stestr run '{posargs}'
stestr run {posargs}
stestr slowest
[testenv:py35]
basepython = python3
commands =
{[testenv]commands}
stestr run '{posargs}'
stestr run {posargs}
[testenv:py36]
basepython = python3.6
commands =
{[testenv]commands}
stestr run '{posargs}'
stestr run {posargs}
[testenv:docs]
basepython = python3