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: Id44292bcc6404d8f47efa04f8f891391fa0e62e1
Closes-Bug: #1801831
This commit is contained in:
98k 2018-10-10 02:24:34 +00:00
parent 08e5be6ff6
commit fee931f285
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ setenv =
VIRTUAL_ENV={envdir}
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands = stestr run '{posargs}'
commands = stestr run {posargs}
[testenv:pep8]
commands = flake8