Skip to content

Commit

Permalink
[no-relnotes] Increase timeout for e2e tests
Browse files Browse the repository at this point in the history
Signed-off-by: Evan Lezar <[email protected]>
  • Loading branch information
elezar committed Aug 22, 2024
1 parent 6f9124a commit 94395ee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/e2e/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
GO_CMD ?= go
GO_FMT ?= gofmt

# The default go tests timeout is 10 minutes which is too for this case.
GO_TEST_TIMEOUT ?= 30m

include $(CURDIR)/versions.mk

DRIVER_ENABLED ?= true
Expand All @@ -31,7 +34,7 @@ test:
echo "[ERR] KUBECONFIG missing, must be defined"; \
exit 1; \
fi
cd $(CURDIR)/tests/e2e && $(GO_CMD) test -v . -args \
cd $(CURDIR)/tests/e2e && $(GO_CMD) test -timeout $(GO_TEST_TIMEOUT) -v . -args \
-kubeconfig=$(KUBECONFIG) \
-driver-enabled=$(DRIVER_ENABLED) \
-image.repo=$(E2E_IMAGE_REPO) \
Expand Down

0 comments on commit 94395ee

Please sign in to comment.