fix(ward): give aos-test a timeout the suite can actually finish inside #1003
No reviewers
Labels
No labels
burndown-2026-06
autonomy
async-consult
autonomy
epic
autonomy
headless
autonomy
live-collab
coherence-core
priority
P0
priority
P1
priority
P2
priority
P3
priority
P4
qa-fixture
role/ai
role/creator
role/design
role/director
role/engineer
role/exec
role/human
role/ops
role/qa
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
coilyco-flight-deck/agentic-os!1003
Loading…
Reference in a new issue
No description provided.
Delete branch "aos/claude/aos-test-timeout"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
One line in
.ward/ward.yaml. Independent of #1001 and #1002, merges in any order.The verb could not pass locally
ward exec aos-testrango test -C aos-cli ./...with no-timeout, so Go's 600s default applied. The suite needs 699s on an M-series Mac, measured directly:So the command the repo tells agents and humans to use for this module could not run to completion on the machine most likely to run it. It failed at
600.536s, which reads as a hang rather than a timeout unless you already know Go's default. It cost me a round of chasing a hang that was not there.Why CI never caught it
The same step finishes in 4.462s on the runner (job 27640,
ci / aos-cli-tests, log line 643). The gate stayed green the whole time the local verb was unusable.That is not mass skipping. The suite has three
t.Skipcalls total and all are narrow (symlinks unavailabletwice, onepsplatform quirk). The runner is simply far faster at the git-heavy native-shadow tests than macOS is.The change
-timeout 30m. Roughly 2.5x the measured local wall time, so a genuine hang still fails rather than hanging until the Ward or CI timeout. No effect on CI, which is nowhere near either bound.Worth separate attention, not folded in here
ci / gateis a much weaker signal for this module than its name suggests.🤖 Generated with Claude Code
`ward exec aos-test` ran `go test -C aos-cli ./...` with no `-timeout`, so Go's 600s default applied. The suite needs 699s on an M-series Mac, measured just now: ok forgejo.coilysiren.me/coilyco-flight-deck/agentic-os/aos 699.477s So the verb the repo tells agents and humans to use could not pass locally. It failed at exactly 600.536s, which reads as a hang rather than a timeout unless you already know the default. CI never caught this because the same step finishes in 4.462s there (job 27640, `ci / aos-cli-tests`). Nothing is being skipped: the suite has three `t.Skip` calls, all narrow. The Linux container is simply that much faster at the git-heavy native-shadow tests, so the gate stayed green while the local verb was unusable. 30m leaves headroom without hiding a real hang. The 60x gap and a 12-minute unit suite are both worth their own look. Filed separately rather than folded in here. Co-authored-by: Kai Siren <coilysiren@gmail.com> Co-authored-by: Claude <noreply@anthropic.com>