Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .changes/unreleased/+macos-integration-timeout-headroom.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
kind: Changed
body: Increase macOS Integration timeout headroom while performance improvements are tracked separately.
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
cli-integration:
name: CLI runtime integration (${{ matrix.name }})
runs-on: ${{ matrix.runner }}
timeout-minutes: 40
timeout-minutes: 60
Comment thread
omry marked this conversation as resolved.
strategy:
fail-fast: false
matrix:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func TestApplicationNetworkPolicyDockerIntegration(t *testing.T) {
if os.Getenv("REPLOY_DOCKER_INTEGRATION") != "1" {
t.Skip("set REPLOY_DOCKER_INTEGRATION=1 to run Docker integration evidence")
}
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Minute)
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Minute)
defer cancel()
image, _ := buildApplicationStartupVerifierIntegrationImage(t, ctx)
helper := buildNetworkPolicyIntegrationHelper(t, ctx)
Expand Down
Loading