File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,9 @@ def test_mnist_with_checkpoint_config(
85
85
tensorflow_training_latest_version ,
86
86
tensorflow_training_latest_py_version ,
87
87
):
88
+ if Version (tensorflow_training_latest_version ) >= Version ("2.16" ):
89
+ pytest .skip ("This test is failing in TensorFlow 2.16 beacuse of an upstream bug: "
90
+ "https://github.com/tensorflow/io/issues/2039" )
88
91
checkpoint_s3_uri = "s3://{}/checkpoints/tf-{}" .format (
89
92
sagemaker_session .default_bucket (), sagemaker_timestamp ()
90
93
)
@@ -235,6 +238,9 @@ def test_mnist_distributed_cpu(
235
238
tensorflow_training_latest_version ,
236
239
tensorflow_training_latest_py_version ,
237
240
):
241
+ if Version (tensorflow_training_latest_version ) >= Version ("2.16" ):
242
+ pytest .skip ("This test is failing in TensorFlow 2.16 beacuse of an upstream bug: "
243
+ "https://github.com/tensorflow/io/issues/2039" )
238
244
_create_and_fit_estimator (
239
245
sagemaker_session ,
240
246
tensorflow_training_latest_version ,
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
15
16
import json
16
17
import os
17
18
import time
@@ -691,6 +692,9 @@ def test_tuning_tf(
691
692
tensorflow_training_latest_version ,
692
693
tensorflow_training_latest_py_version ,
693
694
):
695
+ if Version (tensorflow_training_latest_version ) >= Version ("2.16" ):
696
+ pytest .skip ("This test is failing in TensorFlow 2.16 beacuse of an upstream bug: "
697
+ "https://github.com/tensorflow/io/issues/2039" )
694
698
resource_path = os .path .join (DATA_DIR , "tensorflow_mnist" )
695
699
script_path = "mnist.py"
696
700
You can’t perform that action at this time.
0 commit comments