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: I365260d42e6cfa8e7a357c9a8d2154128a743b4a
This commit is contained in:
98k 2018-10-09 20:46:51 +00:00
parent deeb13e727
commit 097ef07422
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ setenv =
PYTHON=coverage run --source compute_hyperv --parallel-mode
commands =
coverage erase
stestr run '{posargs}'
stestr run {posargs}
coverage combine
coverage html --include='compute_hyperv/*' --omit='compute_hyperv/openstack/common/*' -d covhtml -i
coverage html -d cover