From 2ab0e4f06af4e7c962eb770a2f3314e3b1df7f05 Mon Sep 17 00:00:00 2001 From: aviruthen <91846056+aviruthen@users.noreply.github.com> Date: Fri, 19 Dec 2025 10:22:33 -0800 Subject: [PATCH] Skipping expensive integ tests --- src/hyperpod_cli/sagemaker_hyperpod_recipes | 2 +- .../inference/cli/test_cli_jumpstart_inference_with_mig.py | 1 + .../inference/sdk/test_sdk_jumpstart_inference_with_mig.py | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/hyperpod_cli/sagemaker_hyperpod_recipes b/src/hyperpod_cli/sagemaker_hyperpod_recipes index ce96b513..e3c30ab5 160000 --- a/src/hyperpod_cli/sagemaker_hyperpod_recipes +++ b/src/hyperpod_cli/sagemaker_hyperpod_recipes @@ -1 +1 @@ -Subproject commit ce96b513c3033f815d24469f07e2ef0531aaf8d4 +Subproject commit e3c30ab594f2a5378c448fbd2af58485602e19b0 diff --git a/test/integration_tests/inference/cli/test_cli_jumpstart_inference_with_mig.py b/test/integration_tests/inference/cli/test_cli_jumpstart_inference_with_mig.py index bd385290..782c3bf9 100644 --- a/test/integration_tests/inference/cli/test_cli_jumpstart_inference_with_mig.py +++ b/test/integration_tests/inference/cli/test_cli_jumpstart_inference_with_mig.py @@ -28,6 +28,7 @@ def sagemaker_client(): return boto3.client("sagemaker", region_name=REGION) # --------- JumpStart Endpoint Tests --------- +@pytest.mark.skip(reason="Skipping expensive ml.p4d.24xlarge MIG tests to reduce costs") @pytest.mark.dependency(name="create") def test_js_create(runner, js_endpoint_name): result = runner.invoke(js_create, [ diff --git a/test/integration_tests/inference/sdk/test_sdk_jumpstart_inference_with_mig.py b/test/integration_tests/inference/sdk/test_sdk_jumpstart_inference_with_mig.py index f8645352..34e70aea 100644 --- a/test/integration_tests/inference/sdk/test_sdk_jumpstart_inference_with_mig.py +++ b/test/integration_tests/inference/sdk/test_sdk_jumpstart_inference_with_mig.py @@ -38,6 +38,7 @@ def endpoint_obj(): return HPJumpStartEndpoint(metadata=metadata, model=model, server=server, sage_maker_endpoint=sm_endpoint) +@pytest.mark.skip(reason="Skipping expensive ml.p4d.24xlarge MIG tests to reduce costs") @pytest.mark.dependency(name="create") def test_create_endpoint(endpoint_obj): endpoint_obj.create()