Skip to content

Commit e24c955

Browse files
committed
add job type
1 parent dd97fc1 commit e24c955

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2068,7 +2068,7 @@ def get_job_type_from_image(image_uri):
20682068
:return: Job Type
20692069
"""
20702070
tested_job_type = None
2071-
allowed_job_types = ("training", "inference", "base", "vllm")
2071+
allowed_job_types = ("training", "inference", "base", "vllm", "sglang")
20722072
for job_type in allowed_job_types:
20732073
if job_type in image_uri:
20742074
tested_job_type = job_type

0 commit comments

Comments
 (0)