From 51a83d8d74a9826a286fbb9c20c1f19743523776 Mon Sep 17 00:00:00 2001 From: 98k <18552437190@163.com> Date: Tue, 9 Oct 2018 21:23:52 +0000 Subject: [PATCH] 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: I0b09424dd3cef244e8cec1ef87b5992ccb9d5b07 Closes-Bug:#1801823 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 0d56263de..faae00f9b 100644 --- a/tox.ini +++ b/tox.ini @@ -100,7 +100,7 @@ setenv = {[testenv]setenv} deps = {[testenv:functional]deps} commands = - stestr run '{posargs}' + stestr run {posargs} # If you are running the tests locally you should set the env variable # TEMPEST_CONFIG_DIR=/opt/stack/tempest/etc