fix: /cso infra E2E test — increase timeout to 360s

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) <noreply@anthropic.com>
This commit is contained in:
Garry Tan
2026-03-22 23:35:21 -07:00
parent d046b13fea
commit 227504161f
+3 -3
View File
@@ -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);
});