From 636e34c7e5d086c17a73c3a69144b78200843cd3 Mon Sep 17 00:00:00 2001 From: Nguyen Van Trung Date: Wed, 10 Oct 2018 09:35:58 +0700 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: I9338a3732e92cf04c57c61e4a04a25305a6133e7 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 35999c6..c8e0812 100644 --- a/tox.ini +++ b/tox.ini @@ -25,7 +25,7 @@ basepython = python3 setenv = PYTHON=coverage run --source instack --parallel-mode commands = - stestr run '{posargs}' + stestr run {posargs} coverage combine coverage html -d cover coverage xml -o cover/coverage.xml