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
This commit is contained in:
Nguyen Van Trung 2018-10-10 09:25:06 +07:00
parent f631fdde2c
commit 90733db87d
1 changed files with 1 additions and 1 deletions

View File

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