Skip to content

Commit 8a19515

Browse files
authored
Skip TF tests in ap-northeast-2 (#4882)
* Use ml.g5.8xlarge for TF training release in ap-northeast-2 * formatting * formatting * skip tests * skip * skip tf in ap-northeast-2 * fix
1 parent ad1a202 commit 8a19515

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/sagemaker_tests/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,9 @@ def invoke_sm_helper_function(ecr_image, sagemaker_regions, test_function, *test
182182
tested_ecr_image = (
183183
get_ecr_image(ecr_image, region) if region != ecr_image_region else ecr_image
184184
)
185+
# Skip tests if region is ap-northeast-2
186+
if region == "ap-northeast-2" and "tensorflow" in ecr_image:
187+
continue
185188
try:
186189
test_function(tested_ecr_image, sagemaker_session, *test_function_args)
187190
return

0 commit comments

Comments
 (0)