diff --git a/tests/python/frontend/tflite/test_forward.py b/tests/python/frontend/tflite/test_forward.py index 51c5dad4b85bc..e4612df047200 100644 --- a/tests/python/frontend/tflite/test_forward.py +++ b/tests/python/frontend/tflite/test_forward.py @@ -1132,7 +1132,8 @@ def test_all_reduce(): _test_forward_reduce_quantized(_test_reduce_mean) _test_forward_reduce(_test_reduce_prod) _test_forward_reduce(_test_reduce_sum) - _test_forward_reduce(_test_reduce_any, dtype="bool") + if package_version.parse(tf.VERSION) >= package_version.parse('1.15.0'): + _test_forward_reduce(_test_reduce_any, dtype="bool") #######################################################################