From 62bd9dd3ea0c9d7603981db2ddb16d6ce05e02a7 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Thu, 6 Feb 2025 15:05:38 +0100 Subject: [PATCH] Temporary mute a test for dpnp.correlate --- dpnp/tests/test_usm_type.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dpnp/tests/test_usm_type.py b/dpnp/tests/test_usm_type.py index f37e55932155..b3452e0ccf72 100644 --- a/dpnp/tests/test_usm_type.py +++ b/dpnp/tests/test_usm_type.py @@ -13,6 +13,7 @@ from .helper import ( assert_dtype_allclose, generate_random_numpy_array, + is_win_platform, ) list_of_usm_types = ["device", "shared", "host"] @@ -796,6 +797,9 @@ def test_1in_1out(func, data, usm_type): @pytest.mark.parametrize("usm_type_x", list_of_usm_types, ids=list_of_usm_types) @pytest.mark.parametrize("usm_type_y", list_of_usm_types, ids=list_of_usm_types) def test_2in_1out(func, data1, data2, usm_type_x, usm_type_y): + if func == "correlate" and is_win_platform(): + pytest.skip("due to SAT-7693") + x = dp.array(data1, usm_type=usm_type_x) y = dp.array(data2, usm_type=usm_type_y) z = getattr(dp, func)(x, y)