Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion e2e/harness/act_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading