Skip to content

Commit

Permalink
e2e: increase test timeout (envoyproxy#3883)
Browse files Browse the repository at this point in the history
Signed-off-by: zirain <zirain2009@gmail.com>
  • Loading branch information
zirain authored and guydc committed Jul 22, 2024
1 parent 3c8c9a4 commit 0d9bb9d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tools/make/kube.mk
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ BENCHMARK_REPORT_DIR ?= benchmark_report

E2E_RUN_TEST ?=
E2E_CLEANUP ?= true
E2E_TEST_ARGS ?= -v -tags e2e -timeout 15m

# Set Kubernetes Resources Directory Path
ifeq ($(origin KUBE_PROVIDER_DIR),undefined)
Expand Down Expand Up @@ -147,10 +148,10 @@ run-e2e: ## Run e2e tests
kubectl wait --timeout=5m -n envoy-gateway-system deployment/envoy-gateway --for=condition=Available
kubectl apply -f test/config/gatewayclass.yaml
ifeq ($(E2E_RUN_TEST),)
go test -v -tags e2e ./test/e2e --gateway-class=envoy-gateway --debug=true --cleanup-base-resources=false
go test -v -tags e2e ./test/e2e/merge_gateways --gateway-class=merge-gateways --debug=true --cleanup-base-resources=false
go test -v -tags e2e ./test/e2e/multiple_gc --debug=true --cleanup-base-resources=true
go test -v -tags e2e ./test/e2e/upgrade --gateway-class=upgrade --debug=true --cleanup-base-resources=$(E2E_CLEANUP)
go test $(E2E_TEST_ARGS) ./test/e2e --gateway-class=envoy-gateway --debug=true --cleanup-base-resources=false
go test $(E2E_TEST_ARGS) ./test/e2e/merge_gateways --gateway-class=merge-gateways --debug=true --cleanup-base-resources=false
go test $(E2E_TEST_ARGS) ./test/e2e/multiple_gc --debug=true --cleanup-base-resources=true
go test $(E2E_TEST_ARGS) ./test/e2e/upgrade --gateway-class=upgrade --debug=true --cleanup-base-resources=$(E2E_CLEANUP)
endif

.PHONY: run-benchmark
Expand Down

0 comments on commit 0d9bb9d

Please sign in to comment.