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,14 @@ 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
70
+ @pytest .mark .skip ("data inconsistency P61661075" )
65
71
def test_transform_jobs (
66
72
sagemaker_session , static_transform_job_trial_component , static_endpoint_context
67
73
):
@@ -84,6 +90,7 @@ def test_transform_jobs(
84
90
)
85
91
86
92
93
+ @pytest .mark .skip ("data inconsistency P61661075" )
87
94
def test_processing_jobs (
88
95
sagemaker_session , static_transform_job_trial_component , static_endpoint_context
89
96
):
@@ -94,6 +101,7 @@ def test_processing_jobs(
94
101
assert "ProcessingJob" in processing_job .source .get ("SourceType" )
95
102
96
103
104
+ @pytest .mark .skip ("data inconsistency P61661075" )
97
105
def test_trial_components (
98
106
sagemaker_session , static_transform_job_trial_component , static_endpoint_context
99
107
):
0 commit comments