Skip to content

fix: Skip edge test #3830

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

Merged
merged 3 commits into from
May 4, 2023
Merged
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
7 changes: 2 additions & 5 deletions tests/integ/test_edge.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
from tests.integ import (
DATA_DIR,
TRAINING_DEFAULT_TIMEOUT_MINUTES,
EDGE_PACKAGING_SUPPORTED_REGIONS,
test_region,
)
from tests.integ.timeout import timeout

Expand Down Expand Up @@ -58,9 +56,8 @@ def mxnet_training_job(
return mx.latest_training_job.name


@pytest.mark.skipif(
test_region() not in EDGE_PACKAGING_SUPPORTED_REGIONS,
reason="Edge packaging isn't supported in that specific region.",
@pytest.mark.skip(
reason="Edge has been deprecated. Skipping until feature team deprecates functionality."
)
def test_edge_packaging_job(mxnet_training_job, sagemaker_session):
estimator = MXNet.attach(mxnet_training_job, sagemaker_session=sagemaker_session)
Expand Down