We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ece48d4 commit 156f6eaCopy full SHA for 156f6ea
tests/integ/test_experiments_analytics.py
@@ -19,6 +19,7 @@
19
import pytest
20
21
from sagemaker.analytics import ExperimentAnalytics
22
+from tests import integ
23
24
25
@contextmanager
@@ -121,6 +122,9 @@ def experiment_with_artifacts(sagemaker_session):
121
122
123
124
@pytest.mark.release
125
+@pytest.mark.skipif(
126
+ integ.test_region() == "us-east-2", reason="Currently issues in this region NonSDK related"
127
+)
128
def test_experiment_analytics_artifacts(sagemaker_session):
129
with experiment_with_artifacts(sagemaker_session) as experiment_name:
130
analytics = ExperimentAnalytics(
0 commit comments