From 290c2570be18e74c2c10d2caba67ba8229dd3045 Mon Sep 17 00:00:00 2001 From: Daneyon Hansen Date: Thu, 13 Mar 2025 15:19:34 +0000 Subject: [PATCH] Fix: e2e test dir and manifest naming Signed-off-by: Daneyon Hansen --- Makefile | 2 +- test/e2e/epp/e2e_suite_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 40cb0b751..cf053749a 100644 --- a/Makefile +++ b/Makefile @@ -127,7 +127,7 @@ test-integration: manifests generate fmt vet envtest ## Run tests. .PHONY: test-e2e test-e2e: ## Run end-to-end tests against an existing Kubernetes cluster with at least 3 available GPUs. - go test ./test/e2e/ -v -ginkgo.v + go test ./test/e2e/epp -v -ginkgo.v .PHONY: lint lint: golangci-lint ## Run golangci-lint linter diff --git a/test/e2e/epp/e2e_suite_test.go b/test/e2e/epp/e2e_suite_test.go index e7685c486..01da152f3 100644 --- a/test/e2e/epp/e2e_suite_test.go +++ b/test/e2e/epp/e2e_suite_test.go @@ -57,7 +57,7 @@ const ( // TODO [danehans]: Must be "default" until https://github.com/kubernetes-sigs/gateway-api-inference-extension/issues/227 is fixed nsName = "default" // modelServerName is the name of the model server test resources. - modelServerName = "vllm-llama2-7b-pool" + modelServerName = "my-pool" // modelName is the test model name. modelName = "tweet-summary" // envoyName is the name of the envoy proxy test resources.