summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorTobias Henkel <tobias.henkel@bmw.de>2019-05-03 21:40:00 +0200
committerTobias Henkel <tobias.henkel@bmw.de>2019-05-03 21:40:00 +0200
commit5d828097ff1f1491c673fb927f30e37d221047ef (patch)
treeac3c080b3885cc261d7263d79f66c0a1f59833c7 /tox.ini
parent5d910885d7f6e85bc8335ef05d3e9b2f6927cf08 (diff)
downloadzuul-5d828097ff1f1491c673fb927f30e37d221047ef.tar.gz
Restore posargs when running stestr
The posargs got missing which removed the ability to customize test runs during local execution. Change-Id: Ic8687f817c83367c5da07a3d4444e96912569852
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini2
1 files changed, 1 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index cae13bef6..f9f932fcb 100644
--- a/tox.ini
+++ b/tox.ini
@@ -29,7 +29,7 @@ deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
- bash -c 'stestr run --concurrency=`python -c "import multiprocessing; print(int(multiprocessing.cpu_count()/2))"`'
+ bash -c 'stestr run --concurrency=`python -c "import multiprocessing; print(int(multiprocessing.cpu_count()/2))"` {posargs}'
stestr slowest
[testenv:bindep]