From 847407fe7f49fde07af6039491306fab88600432 Mon Sep 17 00:00:00 2001 From: Vahid Tavanashad Date: Thu, 23 Nov 2023 13:35:48 -0600 Subject: [PATCH] remove skip test --- dpnp/dpnp_iface_manipulation.py | 2 +- tests/third_party/cupy/statistics_tests/test_meanvar.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/dpnp/dpnp_iface_manipulation.py b/dpnp/dpnp_iface_manipulation.py index 6941af2829e1..b805a3a906e9 100644 --- a/dpnp/dpnp_iface_manipulation.py +++ b/dpnp/dpnp_iface_manipulation.py @@ -1049,7 +1049,7 @@ def repeat(a, repeats, axis=None): >>> np.repeat(x, 4) array([3, 3, 3, 3]) - >>> x = np.array([[1,2], [3,4]]) + >>> x = np.array([[1, 2], [3, 4]]) >>> np.repeat(x, 2) array([1, 1, 2, 2, 3, 3, 4, 4]) >>> np.repeat(x, 3, axis=1) diff --git a/tests/third_party/cupy/statistics_tests/test_meanvar.py b/tests/third_party/cupy/statistics_tests/test_meanvar.py index f7689a46393a..738057a99f49 100644 --- a/tests/third_party/cupy/statistics_tests/test_meanvar.py +++ b/tests/third_party/cupy/statistics_tests/test_meanvar.py @@ -181,8 +181,6 @@ def test_external_mean_axis(self, xp, dtype): @testing.for_all_dtypes(no_complex=True) @testing.numpy_cupy_allclose(rtol=1e-06) def test_mean_all_float32_dtype(self, xp, dtype): - if dtype == xp.int32: - pytest.skip("skip until issue #1468 is solved in dpctl") a = xp.full((2, 3, 4), 123456789, dtype=dtype) return xp.mean(a, dtype=numpy.float32)