Skip to content

Commit cd37990

Browse files
committed
More healthcheck disabling.
1 parent ccb801e commit cd37990

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

tests/test_funcs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ def test_roundtrip(self, cls, dict_class):
154154
assert instance == roundtrip_instance
155155

156156
@given(simple_classes())
157+
@settings(suppress_health_check=[HealthCheck.too_slow])
157158
def test_asdict_preserve_order(self, cls):
158159
"""
159160
Field order should be preserved when dumping to OrderedDicts.

tests/test_make.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -745,6 +745,7 @@ def test_metadata_immutability(self, C, string):
745745
a.metadata.popitem()
746746

747747
@given(lists(simple_attrs_without_metadata, min_size=2, max_size=5))
748+
@settings(suppress_health_check=[HealthCheck.too_slow])
748749
def test_empty_metadata_singleton(self, list_of_attrs):
749750
"""
750751
All empty metadata attributes share the same empty metadata dict.

0 commit comments

Comments
 (0)