From 6d0d7716ac193e77ee1e63013c3072e3984f746e Mon Sep 17 00:00:00 2001 From: Roman Kazantsev Date: Fri, 23 Aug 2024 16:20:36 +0400 Subject: [PATCH] [MO Tests] Switch off legacy test_reduce_lp test (#26196) **Details:** Switch off legacy test_reduce_lp test **Ticket:** 150423 --------- Signed-off-by: Kazantsev, Roman --- tools/mo/unit_tests/mo/ops/ReduceOps_test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/mo/unit_tests/mo/ops/ReduceOps_test.py b/tools/mo/unit_tests/mo/ops/ReduceOps_test.py index f1cbc19d331a3a..947fc95c38ab9f 100644 --- a/tools/mo/unit_tests/mo/ops/ReduceOps_test.py +++ b/tools/mo/unit_tests/mo/ops/ReduceOps_test.py @@ -2,6 +2,7 @@ # SPDX-License-Identifier: Apache-2.0 import pytest +import unittest import numpy as np @@ -21,6 +22,7 @@ class TestReduceLpTest(): + @unittest.skip("Skipped due to function array_equal failure") @pytest.mark.parametrize("shape, axes, keepdims, p",[ ([3, 2, 2], [0], True, 1), ([3, 2, 2], [0], True, 2),