Skip to content

Commit b751f29

Browse files
committed
Disable additional healthchecks in hypothesis
We should come back and improve these, but for now this brings back the same behavior for 3.8 as the other python versions.
1 parent ca632a0 commit b751f29

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

extra/test_hypothesis.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@
3232
MAX_EXAMPLES = int(os.environ.get('JP_MAX_EXAMPLES', 1000))
3333
BASE_SETTINGS = {
3434
'max_examples': MAX_EXAMPLES,
35-
'suppress_health_check': [HealthCheck.too_slow],
35+
'suppress_health_check': [HealthCheck.too_slow,
36+
HealthCheck.filter_too_much,
37+
HealthCheck.data_too_large],
3638
}
3739

3840

0 commit comments

Comments
 (0)