From f608bc44d227f172408272b74968096cd36d248a Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Mon, 19 Aug 2024 05:06:57 -0600 Subject: [PATCH] CI: disable ginkgo flake retries As discussed in Aug 13 Cabal, we are almost at a point where e2e tests are reliably passing on the first try. Let's try to keep things that way, and not hide future flakes. Closes: #17967 Signed-off-by: Ed Santiago --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bf61d5b6f85e..33d3f614259f 100644 --- a/Makefile +++ b/Makefile @@ -140,7 +140,7 @@ GINKGO ?= ./test/tools/build/ginkgo GINKGO_JSON ?= $(if $(CI),--json-report ginkgo-e2e.json,) # Allow control over some Ginkgo parameters -GINKGO_FLAKE_ATTEMPTS ?= 3 +GINKGO_FLAKE_ATTEMPTS ?= 0 GINKGO_NO_COLOR ?= y # Conditional required to produce empty-output if binary not built yet.