Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/hyperpod_cli/sagemaker_hyperpod_recipes
Submodule sagemaker_hyperpod_recipes updated from ce96b5 to e3c30a
Original file line number Diff line number Diff line change
Expand Up @@ -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, [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
Loading