mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
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:
parent
11783d6221
commit
49e5127eb5
1 changed files with 6 additions and 2 deletions
|
@ -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":
|
||||
|
|
Loading…
Add table
Reference in a new issue