From 90733db87de8adb52ed0addd1d300179cfb138bf Mon Sep 17 00:00:00 2001 From: Nguyen Van Trung Date: Wed, 10 Oct 2018 09:25:06 +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: Iec8cf149da7ea4ff3b3cf7ee9b9607e22caf9236 --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index f02792f..a28aeb7 100644 --- a/tox.ini +++ b/tox.ini @@ -6,7 +6,7 @@ envlist = py33,py34,py26,py27,pep8 setenv = VIRTUAL_ENV={envdir} deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt -commands = python setup.py testr --slowest --testr-args='{posargs}' +commands = python setup.py testr --slowest --testr-args={posargs} [testenv:pep8] commands = flake8