Skip to content

Commit 519e0d4

Browse files
committed
Skip test_choose_wrap from CuPy tests
Different implementation of the `wrap` keyword makes this test unhelpful
1 parent 97a7e31 commit 519e0d4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

dpnp/tests/third_party/cupy/indexing_tests/test_indexing.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -220,11 +220,14 @@ def test_choose_broadcast2(self, xp, dtype):
220220
c = testing.shaped_arange((3, 5, 2), xp, dtype)
221221
return a.choose(c)
222222

223+
@pytest.mark.skip("Different implementation of `wrap` keyword")
223224
@testing.for_all_dtypes()
224225
@testing.numpy_cupy_array_equal()
225226
def test_choose_wrap(self, xp, dtype):
226227
a = xp.array([0, 3, -1, 5])
227228
c = testing.shaped_arange((3, 4), xp, dtype)
229+
print(a)
230+
print(c)
228231
return a.choose(c, mode="wrap")
229232

230233
@testing.for_all_dtypes()

0 commit comments

Comments
 (0)