Skip to content

Commit bd863de

Browse files
Removed big-endian sparse tests (#8982)
1 parent 26e84a9 commit bd863de

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

distributed/protocol/tests/test_cupy.py

+1-1
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):

distributed/protocol/tests/test_scipy.py

-12
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,7 @@
3030
"dtype",
3131
[
3232
numpy.dtype("<f4"),
33-
pytest.param(
34-
numpy.dtype(">f4"),
35-
marks=pytest.mark.skipif(
36-
SCIPY_GE_1_15_0, reason="https://github.com/scipy/scipy/issues/22258"
37-
),
38-
),
3933
numpy.dtype("<f8"),
40-
pytest.param(
41-
numpy.dtype(">f8"),
42-
marks=pytest.mark.skipif(
43-
SCIPY_GE_1_15_0, reason="https://github.com/scipy/scipy/issues/22258"
44-
),
45-
),
4634
],
4735
)
4836
def test_serialize_scipy_sparse(sparse_type, dtype):

0 commit comments

Comments
 (0)