From 8ca71f5b5b7f6c78a1f522623df47634842d255e Mon Sep 17 00:00:00 2001 From: imacdonn Date: Mon, 8 Oct 2018 19:41:50 +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: I8ce3c403904ea1c6990f88d52c1c1a068aaed75a --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 57ebbc3578d..7969f27a671 100644 --- a/tox.ini +++ b/tox.ini @@ -22,7 +22,7 @@ deps = -r{toxinidir}/test-requirements.txt # call ie: 'tox -epy27 -- --concurrency=4' commands = find . -ignore_readdir_race -type f -name "*.pyc" -delete - stestr run '{posargs}' + stestr run {posargs} stestr slowest whitelist_externals =