From bb098c7f24ef2bad2146f533775512d9942ffa0c Mon Sep 17 00:00:00 2001 From: Liam DeVoe Date: Wed, 27 Nov 2024 18:26:21 -0500 Subject: [PATCH] deflake stateful test --- hypothesis-python/tests/cover/test_stateful.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hypothesis-python/tests/cover/test_stateful.py b/hypothesis-python/tests/cover/test_stateful.py index b8be7b9dda..3113718c3a 100644 --- a/hypothesis-python/tests/cover/test_stateful.py +++ b/hypothesis-python/tests/cover/test_stateful.py @@ -156,7 +156,11 @@ def action(self, d): raise AssertionError -@Settings(stateful_step_count=10, max_examples=30) # speed this up +@Settings( + stateful_step_count=10, + max_examples=30, + suppress_health_check=[HealthCheck.filter_too_much], +) # speed this up class MachineWithConsumingRule(RuleBasedStateMachine): b1 = Bundle("b1") b2 = Bundle("b2")