Skip to content

Commit 4d0f7c6

Browse files
committed
Remove endianness from scipy tests
Followup to dask#8982 and dask#8977, where we skipped / removed tests that were setting the endianness of arrays sent to scipy.sparse, which isn't supported.
1 parent d04fdf8 commit 4d0f7c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

distributed/protocol/tests/test_cupy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def test_serialize_cupy_from_rmm(size):
7474
)
7575
@pytest.mark.parametrize(
7676
"dtype",
77-
[numpy.dtype("<f4"), numpy.dtype(">f4"), numpy.dtype("<f8"), numpy.dtype(">f8")],
77+
[numpy.dtype("f4"), numpy.dtype("f8")],
7878
)
7979
@pytest.mark.parametrize("serializer", ["cuda", "dask", "pickle"])
8080
def test_serialize_cupy_sparse(sparse_name, dtype, serializer):

0 commit comments

Comments
 (0)