From 3f9f6e11306ee6c2aa00c62a02ef30204576e3c1 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Sun, 14 Dec 2025 02:13:17 -0800 Subject: [PATCH] Temporary mute failing tests --- dpnp/tests/test_sycl_queue.py | 1 + dpnp/tests/third_party/cupy/core_tests/test_dlpack.py | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/dpnp/tests/test_sycl_queue.py b/dpnp/tests/test_sycl_queue.py index 3ea4105a2cb2..c6d11dcd8693 100644 --- a/dpnp/tests/test_sycl_queue.py +++ b/dpnp/tests/test_sycl_queue.py @@ -1052,6 +1052,7 @@ def test_array_creation_from_dpctl(copy, device): assert isinstance(result, dpnp_array) +@pytest.mark.skip("due to dpctl-2213") @pytest.mark.parametrize("device", valid_dev, ids=dev_ids) @pytest.mark.parametrize("arr_dtype", get_all_dtypes(no_float16=True)) @pytest.mark.parametrize("shape", [tuple(), (2,), (3, 0, 1), (2, 2, 2)]) diff --git a/dpnp/tests/third_party/cupy/core_tests/test_dlpack.py b/dpnp/tests/third_party/cupy/core_tests/test_dlpack.py index 65feab0a0419..80715257f9bc 100644 --- a/dpnp/tests/third_party/cupy/core_tests/test_dlpack.py +++ b/dpnp/tests/third_party/cupy/core_tests/test_dlpack.py @@ -78,6 +78,7 @@ def _get_stream(self, stream_name): return dpctl.SyclQueue() return dpctl.SyclQueue() + @pytest.mark.skip("due to dpctl-2213") @testing.for_all_dtypes(no_bool=False) def test_conversion(self, dtype): orig_array = _gen_array(dtype) @@ -97,6 +98,7 @@ def test_from_dlpack_and_conv_errors(self): # for host copies. cupy.from_dlpack(orig_array, copy=True) + @pytest.mark.skip("due to dpctl-2213") @pytest.mark.parametrize( "kwargs, versioned", [ @@ -124,6 +126,7 @@ def test_conversion_max_version(self, kwargs, versioned): testing.assert_array_equal(orig_array, out_array) testing.assert_array_equal(orig_array.data.ptr, out_array.data.ptr) + @pytest.mark.skip("due to dpctl-2213") def test_conversion_device(self): orig_array = _gen_array("float32") @@ -195,6 +198,7 @@ def test_conversion_device_to_cpu(self): ) assert numpy.may_share_memory(arr_nocopy, arr1) + @pytest.mark.skip("due to dpctl-2213") def test_stream(self): allowed_streams = ["null", True]