Skip to content

Commit

Permalink
Removed big-endian sparse tests
Browse files Browse the repository at this point in the history
Based on
scipy/scipy#22258 (comment),
this seemes to not be supported.
  • Loading branch information
TomAugspurger committed Jan 9, 2025
1 parent 94222c0 commit 793567a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
2 changes: 1 addition & 1 deletion distributed/protocol/tests/test_cupy.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def test_serialize_cupy_from_rmm(size):
)
@pytest.mark.parametrize(
"dtype",
[numpy.dtype("<f4"), numpy.dtype(">f4"), numpy.dtype("<f8"), numpy.dtype(">f8")],
[numpy.dtype("<f4"), numpy.dtype("<f8")],
)
@pytest.mark.parametrize("serializer", ["cuda", "dask", "pickle"])
def test_serialize_cupy_sparse(sparse_name, dtype, serializer):
Expand Down
12 changes: 0 additions & 12 deletions distributed/protocol/tests/test_scipy.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,7 @@
"dtype",
[
numpy.dtype("<f4"),
pytest.param(
numpy.dtype(">f4"),
marks=pytest.mark.skipif(
SCIPY_GE_1_15_0, reason="https://github.com/scipy/scipy/issues/22258"
),
),
numpy.dtype("<f8"),
pytest.param(
numpy.dtype(">f8"),
marks=pytest.mark.skipif(
SCIPY_GE_1_15_0, reason="https://github.com/scipy/scipy/issues/22258"
),
),
],
)
def test_serialize_scipy_sparse(sparse_type, dtype):
Expand Down

0 comments on commit 793567a

Please sign in to comment.