From 492143e44e26326c2a7dae9904acf1f27cab886d Mon Sep 17 00:00:00 2001 From: Nguyen Van Trung Date: Wed, 10 Oct 2018 09:22:33 +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: If225be953bf78e9f52a3f41797b7746ac823e5cc --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 74f6f956b..3fdb14590 100644 --- a/tox.ini +++ b/tox.ini @@ -54,7 +54,7 @@ basepython = python3.6 commands = pytest {posargs} [testenv:cover] -commands = python setup.py test --coverage --testr-args='{posargs}' +commands = python setup.py test --coverage --testr-args={posargs} [testenv:docs] commands = python setup.py build_sphinx