@@ -108,7 +108,6 @@ def test_marketplace_estimator(sagemaker_session, cpu_instance_type):
108108 print (predictor .predict (test_x .values ).decode ("utf-8" ))
109109
110110
111- @pytest .mark .skip (reason = "This test is currently failing. Skipping until fixed" )
112111@pytest .mark .skipif (
113112 tests .integ .test_region () in tests .integ .NO_MARKET_PLACE_REGIONS ,
114113 reason = "Marketplace is not available in {}" .format (tests .integ .test_region ()),
@@ -166,6 +165,7 @@ def test_marketplace_attach(sagemaker_session, cpu_instance_type):
166165 tests .integ .test_region () in tests .integ .NO_MARKET_PLACE_REGIONS ,
167166 reason = "Marketplace is not available in {}" .format (tests .integ .test_region ()),
168167)
168+ @pytest .mark .flaky (reruns = 5 , reruns_delay = 2 )
169169def test_marketplace_model (sagemaker_session , cpu_instance_type ):
170170 region = sagemaker_session .boto_region_name
171171 account = REGION_ACCOUNT_MAP [region ]
@@ -328,7 +328,6 @@ def test_create_model_package(sagemaker_session, boto_session, iris_image):
328328 assert len (response ["ModelPackageSummaryList" ]) > 0
329329
330330
331- @pytest .mark .skip (reason = "This test is currently failing. Skipping until fixed" )
332331@pytest .mark .skipif (
333332 tests .integ .test_region () in tests .integ .NO_MARKET_PLACE_REGIONS ,
334333 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):
372371 tuner .wait ()
373372
374373
375- @pytest .mark .skip (reason = "This test is currently failing. Skipping until fixed" )
376374@pytest .mark .skipif (
377375 tests .integ .test_region () in tests .integ .NO_MARKET_PLACE_REGIONS ,
378376 reason = "Marketplace is not available in {}" .format (tests .integ .test_region ()),
0 commit comments