diff --git a/tests/test_arraypad.py b/tests/test_arraypad.py index 6f2ad4abc650..b5fb25a18147 100644 --- a/tests/test_arraypad.py +++ b/tests/test_arraypad.py @@ -12,7 +12,7 @@ from dpnp.dpnp_utils.dpnp_utils_pad import _as_pairs as dpnp_as_pairs from tests.third_party.cupy import testing -from .helper import assert_dtype_allclose, get_all_dtypes +from .helper import assert_dtype_allclose, get_all_dtypes, has_support_aspect64 class TestPad: @@ -384,6 +384,7 @@ def test_reflect_symmetric_1d(self, pad_width, mode, reflect_type): result = dpnp.pad(a_dp, pad_width, mode=mode, reflect_type=reflect_type) assert_array_equal(result, expected) + @pytest.mark.skipif(not has_support_aspect64(), reason="dpctl-gh-1887") @pytest.mark.parametrize("data", [[[4, 5, 6], [6, 7, 8]], [[4, 5, 6]]]) @pytest.mark.parametrize("pad_width", [10, (5, 7)]) @pytest.mark.parametrize("mode", ["reflect", "symmetric"])