1414from __future__ import absolute_import
1515import time
1616
17+ import pytest
18+
1719SLEEP_TIME_ONE_SECONDS = 1
1820SLEEP_TIME_THREE_SECONDS = 3
1921
@@ -38,6 +40,7 @@ def test_model_v2(endpoint_context_associate_with_model, model_obj, sagemaker_se
3840 assert model .properties == model_obj .properties
3941
4042
43+ @pytest .mark .skip ("data inconsistency P61661075" )
4144def test_dataset_artifacts (static_endpoint_context ):
4245 artifacts_from_query = static_endpoint_context .dataset_artifacts ()
4346
@@ -46,6 +49,7 @@ def test_dataset_artifacts(static_endpoint_context):
4649 assert artifact .artifact_type == "DataSet"
4750
4851
52+ @pytest .mark .skip ("data inconsistency P61661075" )
4953def test_training_job_arns (
5054 static_endpoint_context ,
5155):
@@ -56,12 +60,14 @@ def test_training_job_arns(
5660 assert "training-job" in arn
5761
5862
63+ @pytest .mark .skip ("data inconsistency P61661075" )
5964def test_pipeline_execution_arn (static_endpoint_context , static_pipeline_execution_arn ):
6065 pipeline_execution_arn = static_endpoint_context .pipeline_execution_arn ()
6166
6267 assert pipeline_execution_arn == static_pipeline_execution_arn
6368
6469
70+ @pytest .mark .skip ("data inconsistency P61661075" )
6571def test_transform_jobs (
6672 sagemaker_session , static_transform_job_trial_component , static_endpoint_context
6773):
@@ -84,6 +90,7 @@ def test_transform_jobs(
8490 )
8591
8692
93+ @pytest .mark .skip ("data inconsistency P61661075" )
8794def test_processing_jobs (
8895 sagemaker_session , static_transform_job_trial_component , static_endpoint_context
8996):
@@ -94,6 +101,7 @@ def test_processing_jobs(
94101 assert "ProcessingJob" in processing_job .source .get ("SourceType" )
95102
96103
104+ @pytest .mark .skip ("data inconsistency P61661075" )
97105def test_trial_components (
98106 sagemaker_session , static_transform_job_trial_component , static_endpoint_context
99107):
0 commit comments