From 227504161f855df282486f77a3ba41db73bd900f Mon Sep 17 00:00:00 2001 From: Garry Tan Date: Sun, 22 Mar 2026 23:35:21 -0700 Subject: [PATCH] =?UTF-8?q?fix:=20/cso=20infra=20E2E=20test=20=E2=80=94=20?= =?UTF-8?q?increase=20timeout=20to=20360s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The infra scope test runs Agent sub-tasks for parallel finding verification which can take longer than 240s. Increased maxTurns from 25 to 60 and timeout from 240s to 360s. Co-Authored-By: Claude Opus 4.6 (1M context) --- test/skill-e2e-cso.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/skill-e2e-cso.test.ts b/test/skill-e2e-cso.test.ts index b6cc68cc..6929d2b1 100644 --- a/test/skill-e2e-cso.test.ts +++ b/test/skill-e2e-cso.test.ts @@ -230,9 +230,9 @@ IMPORTANT: - This repo has a Dockerfile without USER directive and an unpinned third-party GitHub Action. - Focus on infrastructure findings, NOT code-level OWASP scanning.`, workingDirectory: csoInfraDir, - maxTurns: 25, + maxTurns: 60, allowedTools: ['Bash', 'Read', 'Write', 'Edit', 'Grep', 'Glob', 'Agent'], - timeout: 240_000, + timeout: 360_000, }); logCost('cso', result); @@ -245,5 +245,5 @@ IMPORTANT: ).toBe(true); recordE2E(evalCollector, 'cso-infra-scope', 'e2e-cso', result); - }, 240_000); + }, 360_000); });