From 5c06c2d5a611cf337e5440709f448fddea11250e Mon Sep 17 00:00:00 2001 From: 98k <18552437190@163.com> Date: Tue, 9 Oct 2018 21:25:24 +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: Ia7e151422b69f8dc8b0bd0f05eb72343f1221520 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index f7f704bf25..f0721d6e21 100644 --- a/tox.ini +++ b/tox.ini @@ -18,7 +18,7 @@ setenv = basepython = python3 deps = -r{toxinidir}/test-requirements.txt commands = - stestr run '{posargs}' + stestr run {posargs} coverage combine coverage html -d cover coverage xml -o cover/coverage.xml