File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -1159,6 +1159,10 @@ def test_csm_grad(self):
1159
1159
structured = True ,
1160
1160
)
1161
1161
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
+ )
1162
1166
def test_csm_sparser (self ):
1163
1167
# Test support for gradients sparser than the input.
1164
1168
@@ -1191,6 +1195,10 @@ def test_csm_sparser(self):
1191
1195
1192
1196
assert len (spmat .data ) == len (res )
1193
1197
1198
+ @pytest .mark .skipif (
1199
+ version .parse (sp .__version__ ) >= version .parse ("1.16.0" ),
1200
+ reason = "Scipy 1.16 introduced some changes that make this test fail" ,
1201
+ )
1194
1202
def test_csm_unsorted (self ):
1195
1203
# Test support for gradients of unsorted inputs.
1196
1204
You can’t perform that action at this time.
0 commit comments