From 1feab7da092ffbcd7ad91eba36804264fcb725d8 Mon Sep 17 00:00:00 2001 From: f41gh7 Date: Wed, 25 Sep 2024 12:04:12 +0200 Subject: [PATCH] updates e2e tests timeout for 20 minutes Signed-off-by: f41gh7 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index daff95ef..a1628631 100644 --- a/Makefile +++ b/Makefile @@ -127,7 +127,7 @@ test: manifests generate fmt vet envtest ## Run tests. # Utilize Kind or modify the e2e tests to load the image locally, enabling compatibility with other vendors. .PHONY: test-e2e # Run the e2e tests against a Kind k8s instance that is spun up. test-e2e: load-kind - go test ./test/e2e/ -v -ginkgo.v + go test -timeout=20m ./test/e2e/ -v -ginkgo.v .PHONY: lint lint: golangci-lint ## Run golangci-lint linter