Skip to content

Commit 791e006

Browse files
committed
Skip failing test on scipy 1.16
1 parent 0978d11 commit 791e006

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/sparse/test_basic.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1159,6 +1159,10 @@ def test_csm_grad(self):
11591159
structured=True,
11601160
)
11611161

1162+
@pytest.mark.skipif(
1163+
version.parse(sp.__version__) >= version.parse("1.16.0"),
1164+
reason="Scipy 1.16 introduced some changes that make this test fail",
1165+
)
11621166
def test_csm_sparser(self):
11631167
# Test support for gradients sparser than the input.
11641168

0 commit comments

Comments
 (0)