Skip to content
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 @@ -96,6 +96,7 @@ def test_jumpstart_estimator(setup):
assert response is not None


@pytest.mark.slow_test
@x_fail_if_ice
@pytest.mark.skipif(
tests.integ.test_region() not in GATED_TRAINING_MODEL_V1_SUPPORTED_REGIONS,
Expand Down Expand Up @@ -145,6 +146,7 @@ def test_gated_model_training_v1(setup):
assert response is not None


@pytest.mark.slow_test
@x_fail_if_ice
def test_gated_model_training_v2(setup):

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ def test_prepacked_jumpstart_model(setup):
assert response is not None


@pytest.mark.slow_test
@pytest.mark.skipif(
tests.integ.test_region() not in GATED_INFERENCE_MODEL_PACKAGE_SUPPORTED_REGIONS,
reason=f"JumpStart model package inference models unavailable in {tests.integ.test_region()}.",
Expand Down Expand Up @@ -193,6 +194,7 @@ def test_jumpstart_gated_model(setup):
assert response is not None


@pytest.mark.slow_test
@x_fail_if_ice
def test_jumpstart_gated_model_inference_component_enabled(setup):

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ def test_jumpstart_hub_estimator_with_session(setup, add_model_references):
assert response is not None


@pytest.mark.slow_test
def test_jumpstart_hub_gated_estimator_with_eula(setup, add_model_references):

model_id, model_version = "meta-textgeneration-llama-2-7b", "*"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ def test_jumpstart_hub_model_with_default_session(setup, add_model_references):
assert sagemaker_session.endpoint_in_service_or_not(predictor.endpoint_name)


@pytest.mark.slow_test
def test_jumpstart_hub_gated_model(setup, add_model_references):

model_id = "meta-textgeneration-llama-3-2-1b"
Expand Down
1 change: 1 addition & 0 deletions tests/integ/sagemaker/serve/test_schema_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def test_model_builder_negative_path(sagemaker_session):
model_builder.build(sagemaker_session=sagemaker_session)


@pytest.mark.slow_test
@pytest.mark.skipif(
PYTHON_VERSION_IS_NOT_310,
reason="Testing Schema Builder Simplification feature - Local Schema",
Expand Down
1 change: 1 addition & 0 deletions tests/integ/sagemaker/serve/test_serve_tei.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ def model_builder(request):
return request.getfixturevalue(request.param)


@pytest.mark.slow_test
@pytest.mark.skipif(
PYTHON_VERSION_IS_NOT_310,
reason="Testing feature needs latest metadata",
Expand Down
2 changes: 2 additions & 0 deletions tests/integ/test_huggingface_torch_distributed.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@
from __future__ import absolute_import

import os
import pytest
from sagemaker.huggingface import HuggingFace
from tests.integ import DATA_DIR, TRAINING_DEFAULT_TIMEOUT_MINUTES, timeout


@pytest.mark.slow_test
def test_huggingface_torch_distributed_g5_glue(
sagemaker_session,
huggingface_training_latest_version,
Expand Down
Loading