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: Iaf63a522746fe9b46499568d8a054333601a6f7b
This commit is contained in:
confi-surya 2018-10-09 14:04:24 +05:30
parent 70d13e1ac6
commit 9375dc853a
1 changed files with 2 additions and 2 deletions

View File

@ -95,14 +95,14 @@ commands =
basepython = python2.7
commands =
{[testenv]commands}
stestr run '{posargs}'
stestr run {posargs}
stestr slowest
[testenv:py35]
basepython = python3.5
commands =
{[testenv]commands}
stestr run '{posargs}'
stestr run {posargs}
stestr slowest
[testenv:pep8]