mirror of https://github.com/garrytan/gstack.git
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:
parent
d046b13fea
commit
227504161f
|
|
@ -230,9 +230,9 @@ IMPORTANT:
|
||||||
- This repo has a Dockerfile without USER directive and an unpinned third-party GitHub Action.
|
- This repo has a Dockerfile without USER directive and an unpinned third-party GitHub Action.
|
||||||
- Focus on infrastructure findings, NOT code-level OWASP scanning.`,
|
- Focus on infrastructure findings, NOT code-level OWASP scanning.`,
|
||||||
workingDirectory: csoInfraDir,
|
workingDirectory: csoInfraDir,
|
||||||
maxTurns: 25,
|
maxTurns: 60,
|
||||||
allowedTools: ['Bash', 'Read', 'Write', 'Edit', 'Grep', 'Glob', 'Agent'],
|
allowedTools: ['Bash', 'Read', 'Write', 'Edit', 'Grep', 'Glob', 'Agent'],
|
||||||
timeout: 240_000,
|
timeout: 360_000,
|
||||||
});
|
});
|
||||||
|
|
||||||
logCost('cso', result);
|
logCost('cso', result);
|
||||||
|
|
@ -245,5 +245,5 @@ IMPORTANT:
|
||||||
).toBe(true);
|
).toBe(true);
|
||||||
|
|
||||||
recordE2E(evalCollector, 'cso-infra-scope', 'e2e-cso', result);
|
recordE2E(evalCollector, 'cso-infra-scope', 'e2e-cso', result);
|
||||||
}, 240_000);
|
}, 360_000);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue