Skip to content

Commit 5ea07e2

Browse files
committed
Don't fail health check.filter_too_much in CI
1 parent 02d9fc7 commit 5ea07e2

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/hyperlink/test/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,11 @@ def _init_hypothesis():
1717
return
1818

1919
settings.register_profile(
20-
"patience", settings(suppress_health_check=[HealthCheck.too_slow])
20+
"patience", settings(
21+
suppress_health_check=[
22+
HealthCheck.too_slow, HealthCheck.filter_too_much
23+
]
24+
)
2125
)
2226
settings.load_profile("patience")
2327

0 commit comments

Comments
 (0)