Skip to content

Commit 6296584

Browse files
committed
fix: suppress Hypothesis too_slow health check in test_checkpoint
The test uses tmp_path fixture with @given which can be slow during input generation on some systems.
1 parent cc85640 commit 6296584

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/core/test_common.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ class MyEntity(NamedObject):
2323
pass
2424

2525

26-
@settings(suppress_health_check=[HealthCheck.function_scoped_fixture])
26+
@settings(
27+
suppress_health_check=[HealthCheck.function_scoped_fixture, HealthCheck.too_slow]
28+
)
2729
@given(
2830
exist_ok=st.booleans(),
2931
single_checkpoint=st.booleans(),

0 commit comments

Comments
 (0)