File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 12
12
# language governing permissions and limitations under the License.
13
13
from __future__ import absolute_import
14
14
15
- from distutils .version import Version
16
15
import json
17
16
import os
18
17
import time
19
18
20
19
import numpy as np
21
20
import pytest
22
21
from botocore .exceptions import ClientError
22
+ from packaging .version import Version
23
23
24
24
import tests .integ
25
25
from sagemaker import KMeans , LDA , RandomCutForest , image_uris
@@ -741,6 +741,11 @@ def test_tuning_tf_vpc_multi(
741
741
tensorflow_training_latest_py_version ,
742
742
):
743
743
"""Test Tensorflow multi-instance using the same VpcConfig for training and inference"""
744
+ if Version (tensorflow_training_latest_version ) >= Version ("2.16" ):
745
+ pytest .skip (
746
+ "This test is failing in TensorFlow 2.16 beacuse of an upstream bug: "
747
+ "https://github.com/tensorflow/io/issues/2039"
748
+ )
744
749
instance_type = cpu_instance_type
745
750
instance_count = 2
746
751
You can’t perform that action at this time.
0 commit comments