From 104956c65e34f9986f1877250e62f3d294bfffd0 Mon Sep 17 00:00:00 2001 From: Nguyen Van Trung Date: Tue, 9 Oct 2018 10:07:59 +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: Ia3353073bbdf9d18bbd5bd97425b3519f3d5aad0 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 6840b67b8c..65d8be1460 100644 --- a/tox.ini +++ b/tox.ini @@ -100,7 +100,7 @@ deps = -r{toxinidir}/test-requirements.txt setenv = OS_TEST_PATH=./keystone/tests/functional commands = find keystone -type f -name "*.pyc" -delete - stestr run '{posargs}' + stestr run {posargs} stestr slowest passenv = KSTEST_ADMIN_URL