Skip to content

Commit 45be2e7

Browse files
author
Per Goncalves da Silva
committed
factor out flake attempts change to its own PR
Signed-off-by: Per Goncalves da Silva <[email protected]>
1 parent fe0d3aa commit 45be2e7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,8 @@ E2E_TIMEOUT ?= 90m
263263
E2E_TEST_NS ?= operators
264264
E2E_INSTALL_NS ?= operator-lifecycle-manager
265265
E2E_CATALOG_NS ?= $(E2E_INSTALL_NS)
266-
GINKGO_OPTS += -v -randomize-suites -race -trace --show-node-events $(if $(E2E_FLAKE_ATTEMPTS),-flake-attempts=$(E2E_FLAKE_ATTEMPTS) ) $(if $(E2E_SEED),-seed '$(E2E_SEED)' ) $(if $(TEST),-focus '$(TEST)', ) $(if $(SKIP), -skip '$(SKIP)')
266+
E2E_FLAKE_ATTEMPTS ?= 1
267+
GINKGO_OPTS += -v -randomize-suites -race -trace --show-node-events -flake-attempts='$(E2E_FLAKE_ATTEMPTS)' $(if $(E2E_SEED),-seed '$(E2E_SEED)' ) $(if $(TEST),-focus '$(TEST)', ) $(if $(SKIP), -skip '$(SKIP)')
267268

268269
.PHONY: e2e
269270
e2e: #HELP Run e2e tests against a cluster running OLM (params: $E2E_TEST_NS (operator), $E2E_INSTALL_NS (operator-lifecycle-manager), $E2E_CATALOG_NS (operator-lifecycle-manager), $E2E_TIMEOUT (90m), $E2E_FLAKE_ATTEMPTS (1), $TEST(undefined))

0 commit comments

Comments
 (0)