Skip to content
This repository has been archived by the owner on May 3, 2023. It is now read-only.

Commit

Permalink
increase hypothesis timeout deadline for CI runs
Browse files Browse the repository at this point in the history
  • Loading branch information
internaut committed Feb 10, 2022
1 parent 37161b3 commit c98881e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@
from hypothesis import settings, HealthCheck

# profile for CI runs on GitHub machines, which may be slow from time to time so we disable the "too slow" HealthCheck
settings.register_profile('ci', suppress_health_check=(HealthCheck.too_slow, ))
# and set the timeout deadline very high (60 sec.)
settings.register_profile('ci', suppress_health_check=(HealthCheck.too_slow, ), deadline=60000)

0 comments on commit c98881e

Please sign in to comment.