Skip to content

Commit d7ba27b

Browse files
committed
run formatter
1 parent 017ac25 commit d7ba27b

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

tests/integ/test_tf.py

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,10 @@ def test_mnist_with_checkpoint_config(
8686
tensorflow_training_latest_py_version,
8787
):
8888
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")
89+
pytest.skip(
90+
"This test is failing in TensorFlow 2.16 beacuse of an upstream bug: "
91+
"https://github.com/tensorflow/io/issues/2039"
92+
)
9193
checkpoint_s3_uri = "s3://{}/checkpoints/tf-{}".format(
9294
sagemaker_session.default_bucket(), sagemaker_timestamp()
9395
)
@@ -239,8 +241,10 @@ def test_mnist_distributed_cpu(
239241
tensorflow_training_latest_py_version,
240242
):
241243
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")
244+
pytest.skip(
245+
"This test is failing in TensorFlow 2.16 beacuse of an upstream bug: "
246+
"https://github.com/tensorflow/io/issues/2039"
247+
)
244248
_create_and_fit_estimator(
245249
sagemaker_session,
246250
tensorflow_training_latest_version,

tests/integ/test_tuner.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -693,8 +693,10 @@ def test_tuning_tf(
693693
tensorflow_training_latest_py_version,
694694
):
695695
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")
696+
pytest.skip(
697+
"This test is failing in TensorFlow 2.16 beacuse of an upstream bug: "
698+
"https://github.com/tensorflow/io/issues/2039"
699+
)
698700
resource_path = os.path.join(DATA_DIR, "tensorflow_mnist")
699701
script_path = "mnist.py"
700702

0 commit comments

Comments
 (0)