From b5db847b2652c49136d4ee82c869a8ec52f65a83 Mon Sep 17 00:00:00 2001 From: Nguyen Van Trung Date: Tue, 9 Oct 2018 10:12:57 +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: I1088cfbab31befbd24e56add806d6e86fe46e5eb --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 714e6f5866..98dad5edb1 100644 --- a/tox.ini +++ b/tox.ini @@ -12,7 +12,7 @@ deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = find . -type f -name "*.py[c|o]" -delete - stestr run '{posargs}' + stestr run {posargs} stestr slowest [testenv:releasenotes]