summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyen Van Trung <trungnv@vn.fujitsu.com>2018-10-09 09:56:12 +0700
committerNguyen Van Trung <trungnv@vn.fujitsu.com>2018-10-16 06:24:33 +0000
commitfeb8219094c396b2911bd51b240681cfcd6adb9f (patch)
tree592492e4e3d6a0cb9e20a93d203c64b912f73011
parent5dcf504c70b1c867873e606e41ca913b03197967 (diff)
downloaddesignate-feb8219094c396b2911bd51b240681cfcd6adb9f.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: Ia9cf4ec0b6cd5addb81dd1ff31d7e930040ddc44
-rw-r--r--tox.ini6
1 files changed, 3 insertions, 3 deletions
diff --git a/tox.ini b/tox.ini
index 9174ef57..84c19b20 100644
--- a/tox.ini
+++ b/tox.ini
@@ -30,20 +30,20 @@ passenv = http_proxy
[testenv:py27]
commands =
{[testenv]commands}
- stestr run '{posargs}'
+ stestr run {posargs}
stestr slowest
[testenv:py35]
basepython = python3
commands =
{[testenv]commands}
- stestr run '{posargs}'
+ stestr run {posargs}
[testenv:py36]
basepython = python3.6
commands =
{[testenv]commands}
- stestr run '{posargs}'
+ stestr run {posargs}
[testenv:docs]
basepython = python3