diff --git a/python/pyarrow/tests/test_array.py b/python/pyarrow/tests/test_array.py index fca094b519fa5..cd565a72bc19f 100644 --- a/python/pyarrow/tests/test_array.py +++ b/python/pyarrow/tests/test_array.py @@ -2020,6 +2020,7 @@ def test_array_pickle_dictionary(pickle_module): assert array.equals(result) +@h.settings(suppress_health_check=(h.HealthCheck.too_slow,)) @h.given( past.arrays( past.all_types, diff --git a/python/pyarrow/tests/test_types.py b/python/pyarrow/tests/test_types.py index f3b6001003d9c..660765f3361ae 100644 --- a/python/pyarrow/tests/test_types.py +++ b/python/pyarrow/tests/test_types.py @@ -1184,6 +1184,7 @@ def test_is_boolean_value(): assert pa.types.is_boolean_value(np.bool_(False)) +@h.settings(suppress_health_check=(h.HealthCheck.too_slow,)) @h.given( past.all_types | past.all_fields |