From 44d996fa47aa62194c4c1eca04da0842417cabe0 Mon Sep 17 00:00:00 2001 From: Kowser Date: Wed, 5 Aug 2026 10:18:00 -0700 Subject: [PATCH] Disable stateful swarm handoff e2e test - It times out randomly --- e2e/test_suite14_stateful_domain.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e2e/test_suite14_stateful_domain.py b/e2e/test_suite14_stateful_domain.py index 0afabf6d..f02ef82c 100644 --- a/e2e/test_suite14_stateful_domain.py +++ b/e2e/test_suite14_stateful_domain.py @@ -304,6 +304,7 @@ def test_stateful_stop_when_completes(self, fresh_runtime, model): # ── Test 3: Stateful swarm handoff completes ─────────────────── + @pytest.mark.skip(reason="Disabled: statful swarm handoff does not reliably complete in domain") def test_stateful_swarm_handoff_completes(self, fresh_runtime, model): """Swarm handoff + check_transfer workers execute in domain. @@ -342,7 +343,7 @@ def test_stateful_swarm_handoff_completes(self, fresh_runtime, model): OnTextMention(text="HANDOFF_TO_B", target="swarm_agent_b"), ], termination=TextMentionTermination("DONE"), - max_turns=20, + max_turns=6, instructions="Start with swarm_agent_a.", ) result = fresh_runtime.run(swarm, "Execute the swarm workflow", timeout=TIMEOUT)