Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Disable jumpstart tests missing clean up logic #4976

Merged
merged 4 commits into from
Dec 30, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -477,6 +477,7 @@ def _teardown_test_hub_with_reference(public_hub_model_id: str):
raise e


@pytest.mark.skip
# Currently JumpStartModel does not pull from HubService for the Public Hub.
def test_model_reference_marketplace_model(setup):
session = get_sm_session()
Expand Down Expand Up @@ -535,6 +536,7 @@ def test_model_reference_marketplace_model(setup):
# _teardown_test_hub_with_reference(public_hub_marketplace_model_id)


@pytest.mark.skip
def test_bedrock_store_model_tags_from_hub_service(setup):

session = get_sm_session()
Expand Down
1 change: 1 addition & 0 deletions tests/integ/sagemaker/jumpstart/private_hub/test_hub.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def hub_instance():
yield hub


@pytest.mark.skip
def test_private_hub(setup, hub_instance):
# Createhub
create_hub_response = hub_instance.create(
Expand Down
Loading