From 8bbc2ad47eb5c0fc6f00b6da0d572eae1af1fbec Mon Sep 17 00:00:00 2001 From: Joshua Temple Date: Tue, 23 Jun 2026 12:39:50 -0400 Subject: [PATCH] test(e2e): raise TestActRunner_Start deadline to 5m for cold image pulls Signed-off-by: Joshua Temple --- e2e/harness/act_test.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/e2e/harness/act_test.go b/e2e/harness/act_test.go index 04763f6f..aa43cd45 100644 --- a/e2e/harness/act_test.go +++ b/e2e/harness/act_test.go @@ -122,7 +122,10 @@ func TestActRunner_Start(t *testing.T) { t.Skip("skipping integration test") } - ctx, cancel := context.WithTimeout(context.Background(), 2*time.Minute) + // Cold-image pulls can exceed two minutes on a fresh runner; match the + // RunWorkflow test's five-minute budget so the bare-start test does not flake + // on the first image pull. + ctx, cancel := context.WithTimeout(context.Background(), 5*time.Minute) defer cancel() runner, err := NewActRunner(ctx, "", "", "", nil)