Skip to content

Commit

Permalink
CI Test: Deprecating 'Healthcheck.all()' from Hypothesis in fuzz.py (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
rdrll committed Oct 16, 2023
1 parent 935f303 commit 3bb9214
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/fuzz.py
Expand Up @@ -21,7 +21,7 @@
max_examples=1000, # roughly 1k tests/minute, or half that under coverage
derandomize=True, # deterministic mode to avoid CI flakiness
deadline=None, # ignore Hypothesis' health checks; we already know that
suppress_health_check=HealthCheck.all(), # this is slow and filter-heavy.
suppress_health_check=list(HealthCheck), # this is slow and filter-heavy.
)
@given(
# Note that while Hypothesmith might generate code unlike that written by
Expand Down

0 comments on commit 3bb9214

Please sign in to comment.