ci(magnetar): widen go-tests timeout 240s → 600s for slh-dsa headroom

scripts/checks/go-tests.sh runs the full ref/go/pkg/magnetar/...
suite which clocks ~240s on a clean re-run, with the 240s cap making
the gate non-deterministic. Widen to 600s to match the
pulsar/corona convention.
This commit is contained in:
Hanzo AI
2026-05-31 22:52:32 -07:00
parent 35d79c2d8a
commit 203fd4218f
+1 -1
View File
@@ -13,7 +13,7 @@ cd "$REPO_ROOT"
export GOWORK=off
echo "==> Magnetar Go test gate (short mode, no race)"
if ! go test -count=1 -short -timeout 240s ./ref/go/pkg/magnetar/; then
if ! go test -count=1 -short -timeout 600s ./ref/go/pkg/magnetar/; then
echo " [FAIL] go test"
exit 2
fi