Skip to content

Commit 0604f18

Browse files
authored
remove skip test (#1629)
1 parent 7d0815f commit 0604f18

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

dpnp/dpnp_iface_manipulation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,7 @@ def repeat(a, repeats, axis=None):
10491049
>>> np.repeat(x, 4)
10501050
array([3, 3, 3, 3])
10511051
1052-
>>> x = np.array([[1,2], [3,4]])
1052+
>>> x = np.array([[1, 2], [3, 4]])
10531053
>>> np.repeat(x, 2)
10541054
array([1, 1, 2, 2, 3, 3, 4, 4])
10551055
>>> np.repeat(x, 3, axis=1)

tests/third_party/cupy/statistics_tests/test_meanvar.py

-2
Original file line numberDiff line numberDiff line change
@@ -181,8 +181,6 @@ def test_external_mean_axis(self, xp, dtype):
181181
@testing.for_all_dtypes(no_complex=True)
182182
@testing.numpy_cupy_allclose(rtol=1e-06)
183183
def test_mean_all_float32_dtype(self, xp, dtype):
184-
if dtype == xp.int32:
185-
pytest.skip("skip until issue #1468 is solved in dpctl")
186184
a = xp.full((2, 3, 4), 123456789, dtype=dtype)
187185
return xp.mean(a, dtype=numpy.float32)
188186

0 commit comments

Comments
 (0)