Skip to content

Commit 701a5ef

Browse files
committed
XFAIL the device test for dask.array
1 parent 6004b97 commit 701a5ef

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/test_helpers.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ def test_is_xp_array(library, func):
2828

2929
@pytest.mark.parametrize("library", ["cupy", "numpy", "torch", "dask.array", "jax.numpy"])
3030
def test_device(library):
31+
if library == "dask.array":
32+
pytest.xfail("device() needs to be fixed for dask")
33+
3134
if library == "jax.numpy":
3235
xp = import_('jax.experimental.array_api')
3336
else:

0 commit comments

Comments
 (0)