Skip to content

Commit 87d03ba

Browse files
perdasilvaPer Goncalves da Silva
andcommitted
re-enable seed and skip options for e2e (#3296)
Signed-off-by: Per Goncalves da Silva <[email protected]> Co-authored-by: Per Goncalves da Silva <[email protected]> Upstream-repository: operator-lifecycle-manager Upstream-commit: 71056b532cdea2baa41e78d83635b9980fc0a49b
1 parent 562d968 commit 87d03ba

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

staging/operator-lifecycle-manager/Makefile

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,14 @@ e2e-local-docker:
202202
. ./scripts/build_local.sh
203203
. ./scripts/run_e2e_docker.sh $(TEST)
204204

205-
vendor:
206-
go mod tidy
207-
go mod vendor
205+
# E2E test configuration
206+
# Can be overridden when running make e2e, e.g. E2E_TIMEOUT=60m make e2e/e2e-local
207+
E2E_TIMEOUT ?= 90m
208+
E2E_TEST_NS ?= operators
209+
E2E_INSTALL_NS ?= operator-lifecycle-manager
210+
E2E_CATALOG_NS ?= $(E2E_INSTALL_NS)
211+
E2E_FLAKE_ATTEMPTS ?= 1
212+
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)')
208213

209214
container:
210215
docker build -t $(IMAGE_REPO):$(IMAGE_TAG) .
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../testdata/server-new.crt
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../testdata/server-new.key

0 commit comments

Comments
 (0)