Skip to content

Commit 80d1f7f

Browse files
committed
fix health check settings on spmv test
1 parent 6c6bf66 commit 80d1f7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_matrix.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def test_sparse_ratings_indexes(rng):
132132
assert all(vs == rates)
133133

134134

135-
@settings(suppress_health_check=[HealthCheck.function_scoped_fixture])
135+
@settings(deadline=500, suppress_health_check=[HealthCheck.too_slow])
136136
@given(st.data(), coo_arrays(shape=(500, 500)), st.sampled_from(["coo", "csc", "csr"]))
137137
def test_torch_spmv(data, M: sps.coo_array, layout):
138138
"Test to make sure Torch spmv is behaved"

0 commit comments

Comments
 (0)