summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorRodolfo Alonso Hernandez <ralonsoh@redhat.com>2021-07-29 15:45:38 +0000
committerRodolfo Alonso Hernandez <ralonsoh@redhat.com>2021-07-29 15:45:38 +0000
commita27bb19e74d0508520d8e827788c2710e97880a6 (patch)
treeb1718dbf25b8fed6b14b196e5b34d47705e0a640 /tox.ini
parent0411743bb974e5a352dede939d3a824d09234ead (diff)
downloadneutron-a27bb19e74d0508520d8e827788c2710e97880a6.tar.gz
Reduce the fullstack concurrency to 2
In order to mitigate the OOM problems in the CI, this patch reduces the fullstack concurrency to 2. That should reduce the memory consumption and will avoid those nasty OOM exceptions. Closes-Bug: #1938455 Change-Id: I4de4b089e615353b7fde82bd54e0abefa244c8ab
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini4
1 files changed, 2 insertions, 2 deletions
diff --git a/tox.ini b/tox.ini
index f6b257d463..ea76d8f396 100644
--- a/tox.ini
+++ b/tox.ini
@@ -80,7 +80,7 @@ deps =
commands =
{toxinidir}/tools/generate_dhclient_script_for_fullstack.sh {envdir}
{toxinidir}/tools/deploy_rootwrap.sh {toxinidir} {envdir}/etc {envdir}/bin
- stestr run --concurrency 3 {posargs}
+ stestr run --concurrency 2 {posargs}
[testenv:dsvm-fullstack-gate]
setenv = {[testenv:dsvm-fullstack]setenv}
@@ -88,7 +88,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 3 --black-regex neutron.tests.fullstack.test_securitygroup.TestSecurityGroupsSameNetwork.test_securitygroup {posargs}
+ stestr run --concurrency 2 --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]