From d4d13011161e8caee51992fb70ea06862bd41173 Mon Sep 17 00:00:00 2001 From: Alina Kladieva Date: Tue, 24 Dec 2024 17:46:51 +0100 Subject: [PATCH] Skip ONNX layer test cases that depend on openvino.tools.mo Signed-off-by: Alina Kladieva --- tests/layer_tests/onnx_tests/test_abs.py | 1 + tests/layer_tests/onnx_tests/test_and.py | 1 + tests/layer_tests/onnx_tests/test_argmax.py | 1 + tests/layer_tests/onnx_tests/test_ceil.py | 1 + tests/layer_tests/onnx_tests/test_clip.py | 1 + tests/layer_tests/onnx_tests/test_concat.py | 1 + tests/layer_tests/onnx_tests/test_conv.py | 1 + tests/layer_tests/onnx_tests/test_cumsum.py | 1 + tests/layer_tests/onnx_tests/test_dequantize_linear.py | 1 + tests/layer_tests/onnx_tests/test_elu.py | 1 + tests/layer_tests/onnx_tests/test_embedding_bag.py | 1 + tests/layer_tests/onnx_tests/test_floor.py | 1 + tests/layer_tests/onnx_tests/test_gather.py | 1 + tests/layer_tests/onnx_tests/test_hard_sigmoid.py | 1 + tests/layer_tests/onnx_tests/test_identity.py | 1 + tests/layer_tests/onnx_tests/test_leaky_relu.py | 1 + tests/layer_tests/onnx_tests/test_log.py | 1 + tests/layer_tests/onnx_tests/test_logsoftmax.py | 1 + tests/layer_tests/onnx_tests/test_lrn.py | 1 + tests/layer_tests/onnx_tests/test_neg.py | 1 + tests/layer_tests/onnx_tests/test_non_zero.py | 1 + tests/layer_tests/onnx_tests/test_not.py | 1 + tests/layer_tests/onnx_tests/test_or.py | 1 + tests/layer_tests/onnx_tests/test_pad.py | 1 + tests/layer_tests/onnx_tests/test_pooling.py | 1 + tests/layer_tests/onnx_tests/test_prelu.py | 1 + tests/layer_tests/onnx_tests/test_reduce.py | 1 + tests/layer_tests/onnx_tests/test_reduce_lp.py | 1 + tests/layer_tests/onnx_tests/test_relu.py | 1 + tests/layer_tests/onnx_tests/test_reshape.py | 1 + tests/layer_tests/onnx_tests/test_resize.py | 1 + tests/layer_tests/onnx_tests/test_roi_align.py | 1 + tests/layer_tests/onnx_tests/test_scatter.py | 1 + tests/layer_tests/onnx_tests/test_sigmoid.py | 1 + tests/layer_tests/onnx_tests/test_sign.py | 1 + tests/layer_tests/onnx_tests/test_softmax.py | 1 + tests/layer_tests/onnx_tests/test_softplus.py | 1 + tests/layer_tests/onnx_tests/test_softsign.py | 1 + tests/layer_tests/onnx_tests/test_sqrt.py | 1 + tests/layer_tests/onnx_tests/test_trigonometry.py | 1 + tests/layer_tests/onnx_tests/test_where.py | 1 + tests/layer_tests/onnx_tests/test_xor.py | 1 + 42 files changed, 42 insertions(+) diff --git a/tests/layer_tests/onnx_tests/test_abs.py b/tests/layer_tests/onnx_tests/test_abs.py index 9a82929ea35547..2b4511ebe9146e 100644 --- a/tests/layer_tests/onnx_tests/test_abs.py +++ b/tests/layer_tests/onnx_tests/test_abs.py @@ -8,6 +8,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestAbs(OnnxRuntimeLayerTest): def create_net(self, shape, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_and.py b/tests/layer_tests/onnx_tests/test_and.py index ca5d21a42fe067..99aa4e2c8ec98a 100644 --- a/tests/layer_tests/onnx_tests/test_and.py +++ b/tests/layer_tests/onnx_tests/test_and.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestAnd(OnnxRuntimeLayerTest): def _prepare_input(self, inputs_dict): for input in inputs_dict.keys(): diff --git a/tests/layer_tests/onnx_tests/test_argmax.py b/tests/layer_tests/onnx_tests/test_argmax.py index 604df5e7e69875..10ec4f1ce397af 100644 --- a/tests/layer_tests/onnx_tests/test_argmax.py +++ b/tests/layer_tests/onnx_tests/test_argmax.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestArgMax(OnnxRuntimeLayerTest): def create_net(self, shape, axis, keepdims, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_ceil.py b/tests/layer_tests/onnx_tests/test_ceil.py index b7558630ac1c63..694a5720513b6f 100644 --- a/tests/layer_tests/onnx_tests/test_ceil.py +++ b/tests/layer_tests/onnx_tests/test_ceil.py @@ -8,6 +8,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestCeil(OnnxRuntimeLayerTest): def create_net(self, shape, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_clip.py b/tests/layer_tests/onnx_tests/test_clip.py index dbce45193034d9..84addd0869ce07 100644 --- a/tests/layer_tests/onnx_tests/test_clip.py +++ b/tests/layer_tests/onnx_tests/test_clip.py @@ -8,6 +8,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestClip(OnnxRuntimeLayerTest): def create_net(self, shape, ir_version, opset, min=None, max=None): """ diff --git a/tests/layer_tests/onnx_tests/test_concat.py b/tests/layer_tests/onnx_tests/test_concat.py index 8627f3b198dbd3..5fd467c63398dd 100644 --- a/tests/layer_tests/onnx_tests/test_concat.py +++ b/tests/layer_tests/onnx_tests/test_concat.py @@ -8,6 +8,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestConcat(OnnxRuntimeLayerTest): # TODO Add test with default values (axis=0) def create_concat_net_const(self, input_shape, output_shape, axis, ir_version): diff --git a/tests/layer_tests/onnx_tests/test_conv.py b/tests/layer_tests/onnx_tests/test_conv.py index b7f9729141c33e..f6c51b790269ed 100644 --- a/tests/layer_tests/onnx_tests/test_conv.py +++ b/tests/layer_tests/onnx_tests/test_conv.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestConv(OnnxRuntimeLayerTest): def _prepare_input(self, inputs_dict): for input in inputs_dict.keys(): diff --git a/tests/layer_tests/onnx_tests/test_cumsum.py b/tests/layer_tests/onnx_tests/test_cumsum.py index 1e197de490d518..6535b1d5a52896 100644 --- a/tests/layer_tests/onnx_tests/test_cumsum.py +++ b/tests/layer_tests/onnx_tests/test_cumsum.py @@ -20,6 +20,7 @@ def cumsum(a, axis=None, exclusive=False, reverse=False): return res +@pytest.mark.skip(reason="Ticket - 157136") class TestCumSum(OnnxRuntimeLayerTest): def create_net(self, shape, ir_version, axis=None, reverse=None, exclusive=None): """ diff --git a/tests/layer_tests/onnx_tests/test_dequantize_linear.py b/tests/layer_tests/onnx_tests/test_dequantize_linear.py index 9090f3a829919b..6b3283e727716a 100644 --- a/tests/layer_tests/onnx_tests/test_dequantize_linear.py +++ b/tests/layer_tests/onnx_tests/test_dequantize_linear.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestDequantizeLinear(OnnxRuntimeLayerTest): def _prepare_input(self, inputs_dict): for input in inputs_dict.keys(): diff --git a/tests/layer_tests/onnx_tests/test_elu.py b/tests/layer_tests/onnx_tests/test_elu.py index dbffc32d09c6c7..7325b139234f83 100644 --- a/tests/layer_tests/onnx_tests/test_elu.py +++ b/tests/layer_tests/onnx_tests/test_elu.py @@ -8,6 +8,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestElu(OnnxRuntimeLayerTest): def create_net(self, shape, alpha, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_embedding_bag.py b/tests/layer_tests/onnx_tests/test_embedding_bag.py index a18a59b9752f16..c785ff02419557 100644 --- a/tests/layer_tests/onnx_tests/test_embedding_bag.py +++ b/tests/layer_tests/onnx_tests/test_embedding_bag.py @@ -23,6 +23,7 @@ def get_framework_results(self, inputs_dict, model_path): return {'output': self.torch_model(*self.var).detach().numpy()} +@pytest.mark.skip(reason="Ticket - 157136") class EmbeddingBagModel(torch.nn.Module): def __init__(self, n, m, indices_shape=None, per_sample_weights=False, mode="sum"): super(EmbeddingBagModel, self).__init__() diff --git a/tests/layer_tests/onnx_tests/test_floor.py b/tests/layer_tests/onnx_tests/test_floor.py index 87ad058c510e8c..eb8c9581da4e2c 100644 --- a/tests/layer_tests/onnx_tests/test_floor.py +++ b/tests/layer_tests/onnx_tests/test_floor.py @@ -8,6 +8,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestFloor(OnnxRuntimeLayerTest): def create_net(self, shape, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_gather.py b/tests/layer_tests/onnx_tests/test_gather.py index a45d5b4f4a916b..998643e5c1e58f 100644 --- a/tests/layer_tests/onnx_tests/test_gather.py +++ b/tests/layer_tests/onnx_tests/test_gather.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestGather(OnnxRuntimeLayerTest): def create_net(self, shape, axis, indices, output_shape, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_hard_sigmoid.py b/tests/layer_tests/onnx_tests/test_hard_sigmoid.py index 12986c590d41d4..6e951ca9eb9f46 100644 --- a/tests/layer_tests/onnx_tests/test_hard_sigmoid.py +++ b/tests/layer_tests/onnx_tests/test_hard_sigmoid.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestHardSigmoid(OnnxRuntimeLayerTest): def _prepare_input(self, inputs_dict): for input in inputs_dict.keys(): diff --git a/tests/layer_tests/onnx_tests/test_identity.py b/tests/layer_tests/onnx_tests/test_identity.py index a86c0e2a687257..b01eecc2fb2cb5 100644 --- a/tests/layer_tests/onnx_tests/test_identity.py +++ b/tests/layer_tests/onnx_tests/test_identity.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestIdentity(OnnxRuntimeLayerTest): def create_net(self, shape, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_leaky_relu.py b/tests/layer_tests/onnx_tests/test_leaky_relu.py index 3a12bfcd92c33e..85181148d06350 100644 --- a/tests/layer_tests/onnx_tests/test_leaky_relu.py +++ b/tests/layer_tests/onnx_tests/test_leaky_relu.py @@ -8,6 +8,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestLeakyRelu(OnnxRuntimeLayerTest): def create_net(self, shape, alpha, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_log.py b/tests/layer_tests/onnx_tests/test_log.py index db0a329aa09746..a44d360ecfb3fc 100644 --- a/tests/layer_tests/onnx_tests/test_log.py +++ b/tests/layer_tests/onnx_tests/test_log.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestLog(OnnxRuntimeLayerTest): def _prepare_input(self, inputs_dict): for input in inputs_dict.keys(): diff --git a/tests/layer_tests/onnx_tests/test_logsoftmax.py b/tests/layer_tests/onnx_tests/test_logsoftmax.py index a81b20402d50dd..0fcb61321d8f69 100644 --- a/tests/layer_tests/onnx_tests/test_logsoftmax.py +++ b/tests/layer_tests/onnx_tests/test_logsoftmax.py @@ -34,6 +34,7 @@ def get_flatten_shape(src_shape, axis): return [fst_dim, snd_dim] +@pytest.mark.skip(reason="Ticket - 157136") class TestLog(OnnxRuntimeLayerTest): def _prepare_input(self, inputs_dict): for input in inputs_dict.keys(): diff --git a/tests/layer_tests/onnx_tests/test_lrn.py b/tests/layer_tests/onnx_tests/test_lrn.py index 0e8f34129a300f..a3f26afbe1db40 100644 --- a/tests/layer_tests/onnx_tests/test_lrn.py +++ b/tests/layer_tests/onnx_tests/test_lrn.py @@ -8,6 +8,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestLRN(OnnxRuntimeLayerTest): def create_net(self, shape, alpha, beta, bias, size, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_neg.py b/tests/layer_tests/onnx_tests/test_neg.py index d19991cb8a6b12..1eda8ff04925b9 100644 --- a/tests/layer_tests/onnx_tests/test_neg.py +++ b/tests/layer_tests/onnx_tests/test_neg.py @@ -8,6 +8,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestNeg(OnnxRuntimeLayerTest): def create_neg(self, shape, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_non_zero.py b/tests/layer_tests/onnx_tests/test_non_zero.py index 464304651a2a19..257793f814cfbd 100644 --- a/tests/layer_tests/onnx_tests/test_non_zero.py +++ b/tests/layer_tests/onnx_tests/test_non_zero.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestNonZero(OnnxRuntimeLayerTest): def create_net(self, shape, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_not.py b/tests/layer_tests/onnx_tests/test_not.py index 05a6c7ffbb2e2d..308215734938ab 100644 --- a/tests/layer_tests/onnx_tests/test_not.py +++ b/tests/layer_tests/onnx_tests/test_not.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestNot(OnnxRuntimeLayerTest): def _prepare_input(self, inputs_dict): for input in inputs_dict.keys(): diff --git a/tests/layer_tests/onnx_tests/test_or.py b/tests/layer_tests/onnx_tests/test_or.py index 285c90765d6a7e..f5312b00b41ed1 100644 --- a/tests/layer_tests/onnx_tests/test_or.py +++ b/tests/layer_tests/onnx_tests/test_or.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestOr(OnnxRuntimeLayerTest): def _prepare_input(self, inputs_dict): for input in inputs_dict.keys(): diff --git a/tests/layer_tests/onnx_tests/test_pad.py b/tests/layer_tests/onnx_tests/test_pad.py index abacc530d93144..26b8c1963ffb5a 100644 --- a/tests/layer_tests/onnx_tests/test_pad.py +++ b/tests/layer_tests/onnx_tests/test_pad.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestPad(OnnxRuntimeLayerTest): def create_net(self, shape, mode, pads, value, ir_version, opset=None): """ diff --git a/tests/layer_tests/onnx_tests/test_pooling.py b/tests/layer_tests/onnx_tests/test_pooling.py index 85e7fc883fc5d8..9f3eef292af0c4 100644 --- a/tests/layer_tests/onnx_tests/test_pooling.py +++ b/tests/layer_tests/onnx_tests/test_pooling.py @@ -13,6 +13,7 @@ def float_array(x): return np.array(x, dtype=float) +@pytest.mark.skip(reason="Ticket - 157136") class TestPooling(OnnxRuntimeLayerTest): def create_net(self, shape, kernel_shape, pads, strides, op, ir_version, count_include_pad=None, auto_pad=None, diff --git a/tests/layer_tests/onnx_tests/test_prelu.py b/tests/layer_tests/onnx_tests/test_prelu.py index f20e89b7006a44..4d430502ad5cbe 100644 --- a/tests/layer_tests/onnx_tests/test_prelu.py +++ b/tests/layer_tests/onnx_tests/test_prelu.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestPRelu(OnnxRuntimeLayerTest): def create_net(self, shape, slope_shape, precision, ir_version, opset=None): """ diff --git a/tests/layer_tests/onnx_tests/test_reduce.py b/tests/layer_tests/onnx_tests/test_reduce.py index 58141e18260016..b2ec8b5b8d157d 100644 --- a/tests/layer_tests/onnx_tests/test_reduce.py +++ b/tests/layer_tests/onnx_tests/test_reduce.py @@ -8,6 +8,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestReduce(OnnxRuntimeLayerTest): def create_reduce(self, shape, reshapped_shape, op, axes, keep_dims, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_reduce_lp.py b/tests/layer_tests/onnx_tests/test_reduce_lp.py index 2ff4511ef87443..29ec1e8b31e8b5 100644 --- a/tests/layer_tests/onnx_tests/test_reduce_lp.py +++ b/tests/layer_tests/onnx_tests/test_reduce_lp.py @@ -11,6 +11,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestReduceL1L2(OnnxRuntimeLayerTest): def create_reduce_lp(self, shape, axes, keep_dims, reduce_p, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_relu.py b/tests/layer_tests/onnx_tests/test_relu.py index ce597920923289..e4482a5d1f8045 100644 --- a/tests/layer_tests/onnx_tests/test_relu.py +++ b/tests/layer_tests/onnx_tests/test_relu.py @@ -8,6 +8,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestRelu(OnnxRuntimeLayerTest): def create_net(self, shape, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_reshape.py b/tests/layer_tests/onnx_tests/test_reshape.py index 637beeb4388bbb..c50fd2880cb0b8 100644 --- a/tests/layer_tests/onnx_tests/test_reshape.py +++ b/tests/layer_tests/onnx_tests/test_reshape.py @@ -8,6 +8,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestReshape(OnnxRuntimeLayerTest): def create_reshape_net(self, input_shape, output_shape, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_resize.py b/tests/layer_tests/onnx_tests/test_resize.py index 4d28afdb50fe38..f8be312fa8defa 100644 --- a/tests/layer_tests/onnx_tests/test_resize.py +++ b/tests/layer_tests/onnx_tests/test_resize.py @@ -12,6 +12,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestResize(OnnxRuntimeLayerTest): def create_resize_net(self, input_shape, output_shape, scales, sizes, coordinate_transformation_mode, cubic_coeff_a, mode, diff --git a/tests/layer_tests/onnx_tests/test_roi_align.py b/tests/layer_tests/onnx_tests/test_roi_align.py index 4cd49c50c20bf8..31c3043d4d1456 100644 --- a/tests/layer_tests/onnx_tests/test_roi_align.py +++ b/tests/layer_tests/onnx_tests/test_roi_align.py @@ -10,6 +10,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestROIAlign(OnnxRuntimeLayerTest): def _prepare_input(self, inputs_dict): for input in inputs_dict.keys(): diff --git a/tests/layer_tests/onnx_tests/test_scatter.py b/tests/layer_tests/onnx_tests/test_scatter.py index 578300e144bc3d..1eb2e8e26457b5 100644 --- a/tests/layer_tests/onnx_tests/test_scatter.py +++ b/tests/layer_tests/onnx_tests/test_scatter.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestScatters(OnnxRuntimeLayerTest): op = None diff --git a/tests/layer_tests/onnx_tests/test_sigmoid.py b/tests/layer_tests/onnx_tests/test_sigmoid.py index 5dcb3e8f1b112a..8870a24dec2019 100644 --- a/tests/layer_tests/onnx_tests/test_sigmoid.py +++ b/tests/layer_tests/onnx_tests/test_sigmoid.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestSigmoid(OnnxRuntimeLayerTest): def _prepare_input(self, inputs_dict): for input in inputs_dict.keys(): diff --git a/tests/layer_tests/onnx_tests/test_sign.py b/tests/layer_tests/onnx_tests/test_sign.py index 07f4f169a7bc1b..f6167b20bfc606 100644 --- a/tests/layer_tests/onnx_tests/test_sign.py +++ b/tests/layer_tests/onnx_tests/test_sign.py @@ -8,6 +8,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestSign(OnnxRuntimeLayerTest): def create_net(self, shape, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_softmax.py b/tests/layer_tests/onnx_tests/test_softmax.py index c4d9d600276402..c8f3ac70076af9 100644 --- a/tests/layer_tests/onnx_tests/test_softmax.py +++ b/tests/layer_tests/onnx_tests/test_softmax.py @@ -34,6 +34,7 @@ def get_flatten_shape(src_shape, axis): return [fst_dim, snd_dim] +@pytest.mark.skip(reason="Ticket - 157136") class TestSoftmax(OnnxRuntimeLayerTest): def _prepare_input(self, inputs_dict): for input in inputs_dict.keys(): diff --git a/tests/layer_tests/onnx_tests/test_softplus.py b/tests/layer_tests/onnx_tests/test_softplus.py index cdcbbbf3e8ed13..eb62ad4f94b5df 100644 --- a/tests/layer_tests/onnx_tests/test_softplus.py +++ b/tests/layer_tests/onnx_tests/test_softplus.py @@ -8,6 +8,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestSoftplus(OnnxRuntimeLayerTest): def create_net(self, shape, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_softsign.py b/tests/layer_tests/onnx_tests/test_softsign.py index 30ca27402c7878..b1fd8d9c894d73 100644 --- a/tests/layer_tests/onnx_tests/test_softsign.py +++ b/tests/layer_tests/onnx_tests/test_softsign.py @@ -8,6 +8,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestSoftsign(OnnxRuntimeLayerTest): def create_net(self, shape, ir_version): """ diff --git a/tests/layer_tests/onnx_tests/test_sqrt.py b/tests/layer_tests/onnx_tests/test_sqrt.py index 9c4733a68cd9fa..c452e750105e91 100644 --- a/tests/layer_tests/onnx_tests/test_sqrt.py +++ b/tests/layer_tests/onnx_tests/test_sqrt.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestSqrt(OnnxRuntimeLayerTest): def _prepare_input(self, inputs_dict): for input in inputs_dict.keys(): diff --git a/tests/layer_tests/onnx_tests/test_trigonometry.py b/tests/layer_tests/onnx_tests/test_trigonometry.py index 563b63b1e5632d..680f80795497a9 100644 --- a/tests/layer_tests/onnx_tests/test_trigonometry.py +++ b/tests/layer_tests/onnx_tests/test_trigonometry.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestTrigonomery(OnnxRuntimeLayerTest): def _prepare_input(self, inputs_dict): for input in inputs_dict.keys(): diff --git a/tests/layer_tests/onnx_tests/test_where.py b/tests/layer_tests/onnx_tests/test_where.py index fb358a2ced8415..bea2cced2f81b5 100644 --- a/tests/layer_tests/onnx_tests/test_where.py +++ b/tests/layer_tests/onnx_tests/test_where.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestWhere(OnnxRuntimeLayerTest): def _prepare_input(self, inputs_dict): for input in inputs_dict.keys(): diff --git a/tests/layer_tests/onnx_tests/test_xor.py b/tests/layer_tests/onnx_tests/test_xor.py index 2790a31784ff59..786ffa3f75f261 100644 --- a/tests/layer_tests/onnx_tests/test_xor.py +++ b/tests/layer_tests/onnx_tests/test_xor.py @@ -9,6 +9,7 @@ from unit_tests.utils.graph import build_graph +@pytest.mark.skip(reason="Ticket - 157136") class TestXor(OnnxRuntimeLayerTest): def _prepare_input(self, inputs_dict): for input in inputs_dict.keys():