From 2cb3e6486e3fb0675cca762959ecd6b8d787d315 Mon Sep 17 00:00:00 2001 From: Anastasia Kuporosova Date: Mon, 23 Jan 2023 17:54:20 +0100 Subject: [PATCH] [PyOV] skip dynamic test for arm (#15257) * [PyOV] skip dynamic test for arm * Update src/bindings/python/tests/test_runtime/test_infer_request.py Co-authored-by: Ilya Lavrenov Co-authored-by: Ilya Lavrenov --- src/bindings/python/tests/test_runtime/test_infer_request.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/bindings/python/tests/test_runtime/test_infer_request.py b/src/bindings/python/tests/test_runtime/test_infer_request.py index 811ce9690b8..e58d5fa33d6 100644 --- a/src/bindings/python/tests/test_runtime/test_infer_request.py +++ b/src/bindings/python/tests/test_runtime/test_infer_request.py @@ -863,6 +863,9 @@ def test_invalid_inputs(device): def test_infer_dynamic_model(device): core = Core() + if device == "CPU" and "Intel" not in core.get_property(device, "FULL_DEVICE_NAME"): + pytest.skip("This test fails on ARM plugin because it doesn't support dynamic shapes.") + param = ops.parameter(PartialShape([-1, -1])) model = Model(ops.relu(param), [param]) compiled_model = core.compile_model(model, device)