summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVieri <15050873171@163.com>2018-10-09 13:38:11 +0000
committerVieri <15050873171@163.com>2018-10-09 13:38:28 +0000
commit31764711f7116cb3ec60c6ced087c0f844e5c9b2 (patch)
treed68d923b484aed4e94d8d73785b02fa058e1dc2b
parent92bfaacdfdd5fd1ae593404c541aec1692931c0e (diff)
downloadoslotest-31764711f7116cb3ec60c6ced087c0f844e5c9b2.tar.gz
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: Ifae9724565efd8716d8d8d5698edf4a3ff71f3f9
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index f179fee..74f1579 100644
--- a/tox.ini
+++ b/tox.ini
@@ -23,7 +23,7 @@ basepython = python3
setenv =
PYTHON=coverage run --source oslotest --parallel-mode
commands =
- stestr run '{posargs}'
+ stestr run {posargs}
coverage combine
coverage html -d cover
coverage xml -o cover/coverage.xml