From ff84f711407b8dc57fca0fa48f82cfda2714cdb4 Mon Sep 17 00:00:00 2001 From: 98k <18552437190@163.com> Date: Tue, 9 Oct 2018 21:31:17 +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: Idcd18d1cbed5db5538812cc5c225b5ef7ddcc893 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 0874688..61fdf50 100644 --- a/tox.ini +++ b/tox.ini @@ -16,7 +16,7 @@ deps = -r{toxinidir}/test-requirements.txt -r{toxinidir}/requirements.txt commands = - stestr run '{posargs}' + stestr run {posargs} stestr slowest passenv = http_proxy HTTP_PROXY https_proxy HTTPS_PROXY no_proxy NO_PROXY