Skip to content

Commit 8d94eac

Browse files
stubbiclaude
andcommitted
test(conformance): raise idempotency timeout for the full corpus
With the corpus un-skipped, all 9 Ready-gated entries now run (each ~3 min: Ready + 10x reconcile-fingerprint pokes). The previous 30m `go test` timeout was just under the total, so the run panicked mid-corpus after 7 entries had already passed (minimal, maximal, gateways-all, selfconfig, profilestore, autoupdate, backup all reached Ready + held idempotency). Raise the go-test timeout to 55m and the Idempotency job to 65m so the full corpus completes. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 56059c9 commit 8d94eac

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/conformance.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
idempotency:
4343
name: Idempotency
4444
runs-on: ubuntu-latest
45-
timeout-minutes: 45
45+
timeout-minutes: 65
4646
steps:
4747
- uses: actions/checkout@v6
4848
- uses: actions/setup-go@v6

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ conformance-negative:
359359

360360
.PHONY: conformance-idempotency
361361
conformance-idempotency:
362-
cd test/conformance && go test -v -timeout 30m -ginkgo.v -ginkgo.focus="idempotency" ./...
362+
cd test/conformance && go test -v -timeout 55m -ginkgo.v -ginkgo.focus="idempotency" ./...
363363

364364
.PHONY: conformance-upgrade
365365
conformance-upgrade:

0 commit comments

Comments
 (0)