Skip to content

Commit db436fd

Browse files
revert sm vllm (#5382)
1 parent 8e2e3dd commit db436fd

File tree

3 files changed

+3
-10
lines changed

3 files changed

+3
-10
lines changed

src/image.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,8 @@ def collect_installed_packages_information(self):
130130
]
131131
for command in commands:
132132
command_responses.append(f"\n{command}")
133-
134133
command_responses.append(
135-
bytes.decode(docker_client.containers.run(self.ecr_url, command, entrypoint=""))
134+
bytes.decode(docker_client.containers.run(self.ecr_url, command))
136135
)
137136
docker_client.containers.prune()
138137
return command_responses

src/start_testbuilds.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -311,11 +311,7 @@ def main():
311311

312312
# Trigger sagemaker local test jobs when there are changes in sagemaker_tests
313313
# Skip SageMaker local tests for vLLM images as they use different test structure
314-
if (
315-
test_type == "sagemaker"
316-
and config.is_sm_local_test_enabled()
317-
and "vllm" not in images_str
318-
):
314+
if test_type == "sagemaker" and config.is_sm_local_test_enabled():
319315
test_job = f"dlc-pr-{test_type}-local-test"
320316
run_test_job(commit, test_job, images_str)
321317

test/testrunner.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,6 @@ def main():
328328
"functionality_sanity",
329329
"security_sanity",
330330
"eks",
331-
"sagemaker",
332331
"ec2",
333332
}:
334333
LOGGER.info(
@@ -398,7 +397,6 @@ def main():
398397
"bai",
399398
"quick_checks",
400399
"release_candidate_integration",
401-
"sagemaker",
402400
):
403401
pytest_rerun_arg = "--reruns=1"
404402
pytest_rerun_delay_arg = "--reruns-delay=10"
@@ -417,7 +415,7 @@ def main():
417415
pull_dlc_images(all_image_list)
418416
if specific_test_type == "bai":
419417
build_bai_docker_container()
420-
if specific_test_type in ["eks", "ec2", "sagemaker"] and not is_all_images_list_eia:
418+
if specific_test_type in ["eks", "ec2"] and not is_all_images_list_eia:
421419
frameworks_in_images = [
422420
framework
423421
for framework in ("mxnet", "pytorch", "tensorflow", "vllm")

0 commit comments

Comments
 (0)