From c7ae06ab2f60afe3afeb563bd73167bb4afcb28d Mon Sep 17 00:00:00 2001 From: AL Berez Date: Wed, 26 Mar 2025 09:01:25 -0700 Subject: [PATCH] Configure flake attempts to all integration tests --- .github/workflows/tests-integration.yml | 2 +- Makefile | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests-integration.yml b/.github/workflows/tests-integration.yml index 779e84f9a74..fb820e2b37a 100644 --- a/.github/workflows/tests-integration.yml +++ b/.github/workflows/tests-integration.yml @@ -306,7 +306,7 @@ jobs: secrets: inherit run-integration-tests-cf-env-with-client-creds: - name: client creds + name: Client credentials needs: - get-sha - units diff --git a/Makefile b/Makefile index 8d1dd2ffa69..8b6f240c7f7 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,7 @@ UNAME_S := $(shell uname -s) POLL_PROGRESS_THRESHOLD=120s GINKGO_FLAGS ?= -r -randomize-all -require-suite -GINKGO_INT_FLAGS = $(GINKGO_FLAGS) --poll-progress-after $(POLL_PROGRESS_THRESHOLD) +GINKGO_INT_FLAGS = $(GINKGO_FLAGS) --poll-progress-after $(POLL_PROGRESS_THRESHOLD) -flake-attempts $(FLAKE_ATTEMPTS) ginkgo_int = ginkgo $(GINKGO_INT_FLAGS) GINKGO_UNITS_FLAGS = $(GINKGO_FLAGS) -randomize-suites @@ -139,9 +139,9 @@ integration-full-tests: integration-tests-full integration-tests-full: build integration-cleanup integration-isolated integration-push integration-experimental integration-plugin integration-global integration-selfcontained ## Run all isolated, push, experimental, plugin, selfcontained, and global integration tests integration-tests-full-ci: install-test-deps integration-cleanup - $(ginkgo_int) -nodes $(NODES) -flake-attempts $(FLAKE_ATTEMPTS) \ + $(ginkgo_int) -nodes $(NODES) \ integration/shared/isolated integration/v7/isolated integration/shared/plugin integration/shared/experimental integration/v7/experimental integration/v7/push - $(ginkgo_int) -flake-attempts $(FLAKE_ATTEMPTS) integration/shared/global integration/v7/global + $(ginkgo_int) integration/shared/global integration/v7/global lint: format ## Runs all linters and formatters @echo "Running linters..."