14
14
from __future__ import absolute_import
15
15
import time
16
16
17
+ import pytest
18
+
17
19
SLEEP_TIME_ONE_SECONDS = 1
18
20
SLEEP_TIME_THREE_SECONDS = 3
19
21
@@ -38,6 +40,7 @@ def test_model_v2(endpoint_context_associate_with_model, model_obj, sagemaker_se
38
40
assert model .properties == model_obj .properties
39
41
40
42
43
+ @pytest .mark .skip ("data inconsistency P61661075" )
41
44
def test_dataset_artifacts (static_endpoint_context ):
42
45
artifacts_from_query = static_endpoint_context .dataset_artifacts ()
43
46
@@ -46,6 +49,7 @@ def test_dataset_artifacts(static_endpoint_context):
46
49
assert artifact .artifact_type == "DataSet"
47
50
48
51
52
+ @pytest .mark .skip ("data inconsistency P61661075" )
49
53
def test_training_job_arns (
50
54
static_endpoint_context ,
51
55
):
@@ -56,12 +60,13 @@ def test_training_job_arns(
56
60
assert "training-job" in arn
57
61
58
62
63
+ @pytest .mark .skip ("data inconsistency P61661075" )
59
64
def test_pipeline_execution_arn (static_endpoint_context , static_pipeline_execution_arn ):
60
65
pipeline_execution_arn = static_endpoint_context .pipeline_execution_arn ()
61
66
62
67
assert pipeline_execution_arn == static_pipeline_execution_arn
63
68
64
-
69
+ @ pytest . mark . skip ( "data inconsistency P61661075" )
65
70
def test_transform_jobs (
66
71
sagemaker_session , static_transform_job_trial_component , static_endpoint_context
67
72
):
@@ -83,7 +88,7 @@ def test_transform_jobs(
83
88
DestinationArn = static_endpoint_context .context_arn ,
84
89
)
85
90
86
-
91
+ @ pytest . mark . skip ( "data inconsistency P61661075" )
87
92
def test_processing_jobs (
88
93
sagemaker_session , static_transform_job_trial_component , static_endpoint_context
89
94
):
@@ -93,7 +98,7 @@ def test_processing_jobs(
93
98
assert "processing-job" in processing_job .trial_component_arn
94
99
assert "ProcessingJob" in processing_job .source .get ("SourceType" )
95
100
96
-
101
+ @ pytest . mark . skip ( "data inconsistency P61661075" )
97
102
def test_trial_components (
98
103
sagemaker_session , static_transform_job_trial_component , static_endpoint_context
99
104
):
0 commit comments