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
This commit is contained in:
Nguyen Van Trung 2018-10-09 10:07:59 +07:00
parent 413d5c18ff
commit 104956c65e
1 changed files with 1 additions and 1 deletions

View File

@ -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