Skip to content

Commit 94d112d

Browse files
fix: Skip edge test (aws#3830)
1 parent 5b01d66 commit 94d112d

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

tests/integ/test_edge.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
from tests.integ import (
2121
DATA_DIR,
2222
TRAINING_DEFAULT_TIMEOUT_MINUTES,
23-
EDGE_PACKAGING_SUPPORTED_REGIONS,
24-
test_region,
2523
)
2624
from tests.integ.timeout import timeout
2725

@@ -58,9 +56,8 @@ def mxnet_training_job(
5856
return mx.latest_training_job.name
5957

6058

61-
@pytest.mark.skipif(
62-
test_region() not in EDGE_PACKAGING_SUPPORTED_REGIONS,
63-
reason="Edge packaging isn't supported in that specific region.",
59+
@pytest.mark.skip(
60+
reason="Edge has been deprecated. Skipping until feature team deprecates functionality."
6461
)
6562
def test_edge_packaging_job(mxnet_training_job, sagemaker_session):
6663
estimator = MXNet.attach(mxnet_training_job, sagemaker_session=sagemaker_session)

0 commit comments

Comments
 (0)