From 9bbc2bc2a7c49720355c8617c21ad4d74ac89a67 Mon Sep 17 00:00:00 2001 From: wozeparrot Date: Wed, 14 May 2025 15:31:51 -0700 Subject: [PATCH] hotfix: filter_too_much (#10308) --- test/test_dtype_alu.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_dtype_alu.py b/test/test_dtype_alu.py index d9370f9e6b..67ad2d3353 100644 --- a/test/test_dtype_alu.py +++ b/test/test_dtype_alu.py @@ -191,6 +191,7 @@ class TestDTypeALU(unittest.TestCase): overflow_strat = float_strat.filter(lambda x: x > dtypes.max(unsigned_dtype) and x <= dtypes.max(dtypes.int32)) universal_test_cast(a.draw(overflow_strat), float_dtype, unsigned_dtype) + @settings(suppress_health_check=[HealthCheck.filter_too_much]) @given(strat.data(), strat.sampled_from(dtypes_float), strat.sampled_from((dtypes.uint8, dtypes.uint16))) def test_float_cast_to_unsigned_underflow(self, a, float_dtype, unsigned_dtype): if not is_dtype_supported(float_dtype, Device.DEFAULT): float_dtype = dtypes.float32