From 2956fbacc2b1fded1f0856755f0d05ab337d402c Mon Sep 17 00:00:00 2001 From: Vieri <15050873171@163.com> Date: Tue, 9 Oct 2018 13:43:21 +0000 Subject: 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: Idf3ecc193e91c65010a0de08a02e01efcf1bd3a7 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index aa32c50..9aadab5 100644 --- a/tox.ini +++ b/tox.ini @@ -17,7 +17,7 @@ deps = commands = rm -f .testrepository/times.dbm coverage erase - stestr run '{posargs}' + stestr run {posargs} coverage combine coverage html -d cover coverage xml -o cover/coverage.xml -- cgit v1.2.1