Skip to content

Commit

Permalink
Also disables test_any_composite for 2.17
Browse files Browse the repository at this point in the history
(until b/294854329 is resolved)

PiperOrigin-RevId: 614632142
  • Loading branch information
aferludin authored and tensorflower-gardener committed Mar 11, 2024
1 parent df289e4 commit e261be2
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions tensorflow_gnn/experimental/sampler/beam/executor_lib_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,8 +210,14 @@ def test_multiple_inputs(self):
def test_any_composite(self):

# TODO: b/294854329 - Re-enable when the TF fuzzing issue is resolved.
if tf.__version__.startswith('2.15') or tf.__version__.startswith('2.16'):
self.skipTest('Fails with tf internal error on tf 2.15, 2.16 nightly')
if (
tf.__version__.startswith('2.15')
or tf.__version__.startswith('2.16')
or tf.__version__.startswith('2.17')
):
self.skipTest(
'Fails with tf internal error on tf 2.15, 2.16, 2.17 nightly'
)

i = tf.keras.Input([2], name='input')
o = i
Expand Down

0 comments on commit e261be2

Please sign in to comment.