We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b01d66 commit 94d112dCopy full SHA for 94d112d
tests/integ/test_edge.py
@@ -20,8 +20,6 @@
20
from tests.integ import (
21
DATA_DIR,
22
TRAINING_DEFAULT_TIMEOUT_MINUTES,
23
- EDGE_PACKAGING_SUPPORTED_REGIONS,
24
- test_region,
25
)
26
from tests.integ.timeout import timeout
27
@@ -58,9 +56,8 @@ def mxnet_training_job(
58
56
return mx.latest_training_job.name
59
57
60
61
-@pytest.mark.skipif(
62
- test_region() not in EDGE_PACKAGING_SUPPORTED_REGIONS,
63
- reason="Edge packaging isn't supported in that specific region.",
+@pytest.mark.skip(
+ reason="Edge has been deprecated. Skipping until feature team deprecates functionality."
64
65
def test_edge_packaging_job(mxnet_training_job, sagemaker_session):
66
estimator = MXNet.attach(mxnet_training_job, sagemaker_session=sagemaker_session)
0 commit comments