File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 3232)
3333from test_utils import KEYS_TO_DESTROY_FILE
3434from test_utils .pytest_cache import PytestCache
35- from test .vllm .trigger_test import test
35+ from test .vllm .trigger_test import test as test_vllm
3636
3737from src .codebuild_environment import get_codebuild_project_name
3838
@@ -323,6 +323,7 @@ def main():
323323 "functionality_sanity" ,
324324 "security_sanity" ,
325325 "eks" ,
326+ "ec2" ,
326327 }:
327328 LOGGER .info (
328329 f"NOTE: { specific_test_type } tests not supported on vllm images. Skipping..."
@@ -426,7 +427,7 @@ def main():
426427 if framework == "vllm" :
427428 try :
428429 LOGGER .info (f"Running vLLM EKS EC2 tests with image: { all_image_list [0 ]} " )
429- test ()
430+ test_vllm ()
430431 LOGGER .info ("vLLM EKS EC2 tests completed successfully" )
431432 # Exit function after vLLM tests
432433 return
Original file line number Diff line number Diff line change 2121LOGGER .addHandler (logging .StreamHandler (sys .stdout ))
2222
2323AWS_REGION = "us-west-2"
24- CLUSTER_NAME = "dlc-vllm-PR"
24+ build_context = os .getenv ("BUILD_CONTEXT" )
25+ CLUSTER_NAME = f"dlc-vllm-{ build_context } "
2526VLLM_NAMESPACE = "vllm"
2627TEST_DIR = os .path .dirname (os .path .abspath (__file__ ))
2728LWS_YAML = os .path .join (TEST_DIR , "test_artifacts" , "vllm-deepseek-32b-lws.yaml" )
You can’t perform that action at this time.
0 commit comments