summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVieri <15050873171@163.com>2018-10-09 13:43:21 +0000
committerVieri <15050873171@163.com>2018-10-09 13:43:41 +0000
commit2956fbacc2b1fded1f0856755f0d05ab337d402c (patch)
tree631b0f2cda5e1bdcf488c15d43f04d358390bcf2
parent6651c8ffce48ce7ff08f5563a8e6212677ea0468 (diff)
downloadpython-barbicanclient-2956fbacc2b1fded1f0856755f0d05ab337d402c.tar.gz
Don't quote {posargs} in tox.ini4.8.0
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: Idf3ecc193e91c65010a0de08a02e01efcf1bd3a7
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index aa32c50..9aadab5 100644
--- a/tox.ini
+++ b/tox.ini
@@ -17,7 +17,7 @@ deps =
commands =
rm -f .testrepository/times.dbm
coverage erase
- stestr run '{posargs}'
+ stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml