diff --git a/tests/test_make.py b/tests/test_make.py index 9e256f209..60dede50f 100644 --- a/tests/test_make.py +++ b/tests/test_make.py @@ -13,7 +13,7 @@ import pytest -from hypothesis import given +from hypothesis import HealthCheck, given, settings from hypothesis.strategies import booleans, integers, lists, sampled_from, text import attr @@ -1039,6 +1039,7 @@ def test_empty_countingattr_metadata_independent(self, list_of_attrs): assert x.metadata is not y.metadata @given(lists(simple_attrs_with_metadata(), min_size=2, max_size=5)) + @settings(suppress_health_check=[HealthCheck.too_slow]) def test_not_none_metadata(self, list_of_attrs): """ Non-empty metadata attributes exist as fields after ``@attr.s``.