diff options
author | James E. Blair <jeblair@redhat.com> | 2019-04-25 14:55:56 -0700 |
---|---|---|
committer | James E. Blair <jeblair@redhat.com> | 2019-04-25 14:55:56 -0700 |
commit | c9f4a862cefa22bf4320cfa603ed0ad6c52a0d4d (patch) | |
tree | 4ce604a1b3e50285f270a960d08f18d95dc1165f /tox.ini | |
parent | b0252eef9de68035e0e4614dacde7e6660a9083a (diff) | |
download | zuul-c9f4a862cefa22bf4320cfa603ed0ad6c52a0d4d.tar.gz |
Halve stestr concurrency
To see if reducing the concurrency of tests makes them more reliable,
set them to half the number of cpus (by default, stestr uses the
number of cpus).
Change-Id: I7977c853b759cf980a6717a70876857ef7e9f77e
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ deps = -r{toxinidir}/requirements.txt -r{toxinidir}/test-requirements.txt commands = - stestr run {posargs} + bash -c 'stestr run --concurrency=`python -c "import multiprocessing; print(int(multiprocessing.cpu_count()/2))"`' stestr slowest [testenv:bindep] |