From 8992589dd6fcfdfc5f1435a4a9a92da501dd5ab6 Mon Sep 17 00:00:00 2001 From: Yih-Dar <2521628+ydshieh@users.noreply.github.com> Date: Thu, 17 Aug 2023 11:23:16 +0200 Subject: [PATCH] Skip `test_onnx_runtime_optimize` for now (#25560) fix Co-authored-by: ydshieh --- tests/test_modeling_tf_common.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_modeling_tf_common.py b/tests/test_modeling_tf_common.py index 6e5fd6ce6ca..0d7bf373a4d 100644 --- a/tests/test_modeling_tf_common.py +++ b/tests/test_modeling_tf_common.py @@ -330,6 +330,9 @@ class TFModelTesterMixin: self.assertEqual(len(incompatible_ops), 0, incompatible_ops) + # `tf2onnx` issue page: https://github.com/onnx/tensorflow-onnx/issues/2172 + # TODO: undo skip once a fix is done in `tf2onnx` + @unittest.skip("`tf2onnx` broke with TF 2.13") @require_tf2onnx @slow def test_onnx_runtime_optimize(self):