@@ -108,7 +108,6 @@ def test_marketplace_estimator(sagemaker_session, cpu_instance_type):
108
108
print (predictor .predict (test_x .values ).decode ("utf-8" ))
109
109
110
110
111
- @pytest .mark .skip (reason = "This test is currently failing. Skipping until fixed" )
112
111
@pytest .mark .skipif (
113
112
tests .integ .test_region () in tests .integ .NO_MARKET_PLACE_REGIONS ,
114
113
reason = "Marketplace is not available in {}" .format (tests .integ .test_region ()),
@@ -166,6 +165,7 @@ def test_marketplace_attach(sagemaker_session, cpu_instance_type):
166
165
tests .integ .test_region () in tests .integ .NO_MARKET_PLACE_REGIONS ,
167
166
reason = "Marketplace is not available in {}" .format (tests .integ .test_region ()),
168
167
)
168
+ @pytest .mark .flaky (reruns = 5 , reruns_delay = 2 )
169
169
def test_marketplace_model (sagemaker_session , cpu_instance_type ):
170
170
region = sagemaker_session .boto_region_name
171
171
account = REGION_ACCOUNT_MAP [region ]
@@ -328,7 +328,6 @@ def test_create_model_package(sagemaker_session, boto_session, iris_image):
328
328
assert len (response ["ModelPackageSummaryList" ]) > 0
329
329
330
330
331
- @pytest .mark .skip (reason = "This test is currently failing. Skipping until fixed" )
332
331
@pytest .mark .skipif (
333
332
tests .integ .test_region () in tests .integ .NO_MARKET_PLACE_REGIONS ,
334
333
reason = "Marketplace is not available in {}" .format (tests .integ .test_region ()),
@@ -372,7 +371,6 @@ def test_marketplace_tuning_job(sagemaker_session, cpu_instance_type):
372
371
tuner .wait ()
373
372
374
373
375
- @pytest .mark .skip (reason = "This test is currently failing. Skipping until fixed" )
376
374
@pytest .mark .skipif (
377
375
tests .integ .test_region () in tests .integ .NO_MARKET_PLACE_REGIONS ,
378
376
reason = "Marketplace is not available in {}" .format (tests .integ .test_region ()),
0 commit comments