From e6ab94fc12c8f44eb14d5488ff65648d6e6fd007 Mon Sep 17 00:00:00 2001 From: jerryzhuang Date: Sat, 16 Nov 2024 10:46:30 +1100 Subject: [PATCH] feat: enlarge e2e parallel level to 4 Signed-off-by: jerryzhuang --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4065c89cd..543cee5c7 100644 --- a/Makefile +++ b/Makefile @@ -107,7 +107,7 @@ inference-api-e2e: # Ginkgo configurations GINKGO_FOCUS ?= GINKGO_SKIP ?= -GINKGO_NODES ?= 2 +GINKGO_NODES ?= 4 GINKGO_NO_COLOR ?= false GINKGO_TIMEOUT ?= 120m GINKGO_ARGS ?= -focus="$(GINKGO_FOCUS)" -skip="$(GINKGO_SKIP)" -nodes=$(GINKGO_NODES) -no-color=$(GINKGO_NO_COLOR) -timeout=$(GINKGO_TIMEOUT)