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: I12da130a87f9dd6688ce21812e4c628ad4f0ae0e
This commit is contained in:
98k 2018-10-09 21:22:19 +00:00
parent 133d5be638
commit e1b8b7b922
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ commands = {posargs}
setenv =
PYTHON=coverage run --source neutron_classifier --parallel-mode
commands =
stestr run '{posargs}'
stestr run {posargs}
[testenv:docs]
commands = python setup.py build_sphinx