From 308f19c4f8a1ccc6e3857aa60727d0843dc97338 Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Sat, 15 Aug 2026 22:07:59 -0700 Subject: [PATCH] =?UTF-8?q?test(evals):=20document-release=20budget=20180s?= =?UTF-8?q?=20->=20300s=20=E2=80=94=20same=20contention=20ratchet,=20recei?= =?UTF-8?q?pts=20in-file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Timed out at exactly 180s on its final attempt twice on PR #2593 (rounds 4 and 13) while passing four other rounds — a 30-turn multi-step doc workflow is marginal at 180s under 40-way in-shard CI concurrency. Same story and same fix as review-dashboard-via and retro-base-branch; outer bun timeout rises to 360s. --- test/skill-e2e-workflow.test.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/test/skill-e2e-workflow.test.ts b/test/skill-e2e-workflow.test.ts index 52892a50d..23e6374e4 100644 --- a/test/skill-e2e-workflow.test.ts +++ b/test/skill-e2e-workflow.test.ts @@ -77,7 +77,13 @@ IMPORTANT: workingDirectory: docReleaseDir, maxTurns: 30, allowedTools: ['Bash', 'Read', 'Write', 'Edit', 'Grep', 'Glob'], - timeout: 180_000, + // 300s, not 180s: a 30-turn multi-step doc workflow under 40-way + // in-shard CI concurrency timed out at exactly 180s on its final + // attempt twice on PR #2593 (rounds 4 and 13) while passing four + // other rounds — marginal at 180s, same contention story as + // review-dashboard-via and retro-base-branch. Outer bun timeout + // rises to 360s for headroom. + timeout: 300_000, testName: 'document-release', runId, }); @@ -114,7 +120,7 @@ IMPORTANT: } else { console.warn('README was NOT updated — agent may not have found the feature'); } - }, 240_000); + }, 360_000); }); // --- Ship workflow with local bare remote ---