Integration tests without splits now take longer then 7 hours. Split it again.

Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
This commit is contained in:
Pedro Algarvio 2023-11-05 10:42:30 +00:00 committed by Pedro Algarvio
parent 11783d6221
commit 49e5127eb5

View file

@ -640,8 +640,12 @@ def matrix(ctx: Context, distro_slug: str, full: bool = False, workflow: str = "
}
# On nightly and scheduled builds we don't want splits at all
if workflow.lower() in ("nightly", "scheduled"):
ctx.info(f"Clearning splits definition since workflow is '{workflow}'")
_splits.clear()
ctx.info(f"Reducing splits definition since workflow is '{workflow}'")
for key in _splits:
new_value = _splits[key] - 2
if new_value < 1:
new_value = 1
_splits[key] = new_value
for transport in ("zeromq", "tcp"):
if transport == "tcp":