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: I1088cfbab31befbd24e56add806d6e86fe46e5eb
This commit is contained in:
Nguyen Van Trung 2018-10-09 10:12:57 +07:00
parent fe3c1f5df3
commit b5db847b26
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
find . -type f -name "*.py[c|o]" -delete
stestr run '{posargs}'
stestr run {posargs}
stestr slowest
[testenv:releasenotes]