@@ -50,6 +50,10 @@ def test_time_series_forecasting_session_job_name():
50
50
return unique_name_from_base ("ts-forecast-job" , max_length = 32 )
51
51
52
52
53
+ @pytest .mark .skip (
54
+ reason = "The test is disabled because it's causing the ResourceLimit exception. \
55
+ Please run that manually before the proper fix."
56
+ )
53
57
@pytest .mark .skipif (
54
58
tests .integ .test_region () in tests .integ .NO_AUTO_ML_REGIONS ,
55
59
reason = "AutoML is not supported in the region yet." ,
@@ -116,6 +120,10 @@ def test_auto_ml_v2_describe_auto_ml_job(
116
120
assert desc ["OutputDataConfig" ] == expected_default_output_config
117
121
118
122
123
+ @pytest .mark .skip (
124
+ reason = "The test is disabled because it's causing the ResourceLimit exception. \
125
+ Please run that manually before the proper fix."
126
+ )
119
127
@pytest .mark .skipif (
120
128
tests .integ .test_region () in tests .integ .NO_AUTO_ML_REGIONS ,
121
129
reason = "AutoML is not supported in the region yet." ,
@@ -181,6 +189,10 @@ def test_auto_ml_v2_attach(problem_type, job_name_fixture_key, sagemaker_session
181
189
assert desc ["OutputDataConfig" ] == expected_default_output_config
182
190
183
191
192
+ @pytest .mark .skip (
193
+ reason = "The test is disabled because it's causing the ResourceLimit exception. \
194
+ Please run that manually before the proper fix."
195
+ )
184
196
@pytest .mark .skipif (
185
197
tests .integ .test_region () in tests .integ .NO_AUTO_ML_REGIONS ,
186
198
reason = "AutoML is not supported in the region yet." ,
@@ -258,6 +270,10 @@ def test_list_candidates(
258
270
pytest .skip ("The job hasn't finished yet" )
259
271
260
272
273
+ @pytest .mark .skip (
274
+ reason = "The test is disabled because it's causing the ResourceLimit exception. \
275
+ Please run that manually before the proper fix."
276
+ )
261
277
@pytest .mark .skipif (
262
278
tests .integ .test_region () in tests .integ .NO_AUTO_ML_REGIONS ,
263
279
reason = "AutoML is not supported in the region yet." ,
@@ -329,6 +345,10 @@ def test_best_candidate(
329
345
pytest .skip ("The job hasn't finished yet" )
330
346
331
347
348
+ @pytest .mark .skip (
349
+ reason = "The test is disabled because it's causing the ResourceLimit exception. \
350
+ Please run that manually before the proper fix."
351
+ )
332
352
@pytest .mark .skipif (
333
353
tests .integ .test_region () in tests .integ .NO_AUTO_ML_REGIONS
334
354
or tests .integ .test_region () in tests .integ .NO_CANVAS_REGIONS ,
@@ -423,6 +443,10 @@ def test_deploy_best_candidate(
423
443
pytest .skip ("The job hasn't finished yet" )
424
444
425
445
446
+ @pytest .mark .skip (
447
+ reason = "The test is disabled because it's causing the ResourceLimit exception. \
448
+ Please run that manually before the proper fix."
449
+ )
426
450
@pytest .mark .skipif (
427
451
tests .integ .test_region () in tests .integ .NO_AUTO_ML_REGIONS ,
428
452
reason = "AutoML is not supported in the region yet." ,
0 commit comments