From 26a2266cf4e2395b0146902de2eb0a6966a037ec Mon Sep 17 00:00:00 2001 From: Rodolfo Alonso Hernandez Date: Mon, 3 Jul 2023 18:46:20 +0000 Subject: [PATCH] [FT] Move ``BaseOVSTestCase`` class to concurrency 1 executor Move the ``BaseOVSTestCase`` class tests to the stestr executor with concurrency=1. That will prevent that the minimum bandwidth tests interfere among them. Closes-Bug: #2025740 Change-Id: Ia3741abe5fa0c8ff65cf36d1ec31c089a1759f05 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 7349abd5358..d32ed8bf307 100644 --- a/tox.ini +++ b/tox.ini @@ -79,8 +79,8 @@ setenv = {[testenv:dsvm-functional]setenv} deps = {[testenv:dsvm-functional]deps} commands = bash {toxinidir}/tools/deploy_rootwrap.sh {toxinidir} {envdir}/etc {envdir}/bin - stestr run --slowest --exclude-regex (.*MySQL\.|.*PostgreSQL\.|.*test_get_all_devices|.*TestMetadataAgent\.) {posargs} - stestr run --slowest --combine --concurrency 1 (.*MySQL\.|.*PostgreSQL\.|.*test_get_all_devices|.*TestMetadataAgent\.) {posargs} + stestr run --slowest --exclude-regex (.*MySQL\.|.*PostgreSQL\.|.*test_get_all_devices|.*TestMetadataAgent\.|.*BaseOVSTestCase\.) {posargs} + stestr run --slowest --combine --concurrency 1 (.*MySQL\.|.*PostgreSQL\.|.*test_get_all_devices|.*TestMetadataAgent\.|.*BaseOVSTestCase\.) {posargs} [testenv:dsvm-fullstack] setenv = {[testenv]setenv}