From 84be4b505cff7d536eba8c1da85efb0c21c54185 Mon Sep 17 00:00:00 2001 From: Slawek Kaplonski Date: Tue, 2 Mar 2021 09:47:08 +0100 Subject: [PATCH] Reduce number of the workers in fullstack gate job Fullstack job is using different tox env in the gate (dsvm-fullstack-gate). To reduce memory usage in that job, some time ago, in patch [1] we reduced number of test workers from 4 to 3. But it was done for "dsvm-fullstack" tox env, not for "dsvm-fullstack-gate" thus it had no effect on our CI runs. Now it is changed also in the CI job's tox env. [1] https://review.opendev.org/c/openstack/neutron/+/764907 Change-Id: Iec949922be0779a00bf405c2f1d5646c588d323c Related-Bug: #1906366 (cherry picked from commit d9542b6a0164cbe0c0fd32b15d0d5db652d47a2f) --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 960664fa6d6..3057a06282d 100644 --- a/tox.ini +++ b/tox.ini @@ -84,7 +84,7 @@ deps = {[testenv:dsvm-fullstack]deps} commands = {toxinidir}/tools/generate_dhclient_script_for_fullstack.sh {envdir} {toxinidir}/tools/deploy_rootwrap.sh {toxinidir} {envdir}/etc {envdir}/bin - stestr run --concurrency 4 --black-regex neutron.tests.fullstack.test_securitygroup.TestSecurityGroupsSameNetwork.test_securitygroup {posargs} + stestr run --concurrency 3 --black-regex neutron.tests.fullstack.test_securitygroup.TestSecurityGroupsSameNetwork.test_securitygroup {posargs} stestr run --combine --concurrency 1 neutron.tests.fullstack.test_securitygroup.TestSecurityGroupsSameNetwork.test_securitygroup {posargs} [testenv:releasenotes]