Author: Michael R. Crusoe <crusoe@debian.org>
Description: Remove timeout on two tests that are too slow on RISCV64
Forwarded: not-needed

Example error: "Data generation is extremely slow: Only produced 6 valid examples in 1.41 seconds"
--- sourmash.orig/tests/test__minhash_hypothesis.py
+++ sourmash/tests/test__minhash_hypothesis.py
@@ -1,6 +1,6 @@
 import pytest
 
-from hypothesis import given, example
+from hypothesis import given, example, settings, HealthCheck
 import hypothesis.strategies as st
 
 from sourmash import MinHash
@@ -12,6 +12,7 @@
     st.lists(st.integers(min_value=0, max_value=2**64 - 1), min_size=10, max_size=1000),
     st.integers(min_value=10, max_value=1000),
 )
+@settings(suppress_health_check=[HealthCheck.too_slow])
 @example([1, 2], [3, 4], 2)
 def test_set_abundance_num_hypothesis(hashes, abundances, sketch_size):
     a = MinHash(sketch_size, 10, track_abundance=True)
@@ -32,6 +33,7 @@
     st.lists(st.integers(min_value=0, max_value=2**64 - 1), min_size=10, max_size=1000),
     st.integers(min_value=1000, max_value=10000),
 )
+@settings(suppress_health_check=[HealthCheck.too_slow])
 @example([0], [0], 1000)
 def test_set_abundance_scaled_hypothesis(hashes, abundances, scaled):
     a = MinHash(0, 10, track_abundance=True, scaled=scaled)
