swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: c533d6e9c76aa0f7d5dbc90ae0a1d0904ff12cbf authored by Valentin Lorentz on 27 February 2019, 09:42:29 UTC
Double the timeout of revision_get.
Tip revision: c533d6e
conftest.py
from hypothesis import settings

# define tests profile. Full documentation is at:
# https://hypothesis.readthedocs.io/en/latest/settings.html#settings-profiles
settings.register_profile("fast", max_examples=5, deadline=5000)
settings.register_profile("slow", max_examples=20, deadline=5000)
back to top