summaryrefslogtreecommitdiff
path: root/dev-python/attrs/files/test_funcs-too-slow.patch
blob: 4d0698ed7de5e4107f713ab0cf97664b0c7cf030 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/tests/test_funcs.py b/tests/test_funcs.py
index 36969c7..00da655 100644
--- a/tests/test_funcs.py
+++ b/tests/test_funcs.py
@@ -8,7 +8,7 @@ from collections import OrderedDict, Sequence, Mapping
 
 import pytest
 
-from hypothesis import assume, given, strategies as st
+from hypothesis import assume, given, strategies as st, settings, HealthCheck
 
 from .utils import simple_classes, nested_classes
 
@@ -57,6 +57,7 @@ class TestAsDict(object):
         ), dict_factory=dict_class)
 
     @given(nested_classes, st.sampled_from(MAPPING_TYPES))
+    @settings(suppress_health_check=[HealthCheck.too_slow])
     def test_recurse_property(self, cls, dict_class):
         """
         Property tests for recursive asdict.