Skip to content

Commit 7d0138e

Browse files
committed
Skip test_choose_wrap from CuPy tests
Different implementation of the `wrap` keyword makes this test unhelpful
1 parent c454586 commit 7d0138e

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
@@ -222,11 +222,14 @@ def test_choose_broadcast2(self, xp, dtype):
222222
c = testing.shaped_arange((3, 5, 2), xp, dtype)
223223
return a.choose(c)
224224

225+
@pytest.mark.skip("Different implementation of `wrap` keyword")
225226
@testing.for_all_dtypes()
226227
@testing.numpy_cupy_array_equal()
227228
def test_choose_wrap(self, xp, dtype):
228229
a = xp.array([0, 3, -1, 5])
229230
c = testing.shaped_arange((3, 4), xp, dtype)
231+
print(a)
232+
print(c)
230233
return a.choose(c, mode="wrap")
231234

232235
@testing.for_all_dtypes()

0 commit comments

Comments
 (0)