https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: 071220786e043a22fb917a320a24a1157366f02b authored by Valentin Lorentz on 10 January 2020, 14:13:07 UTC
Use swh.core.sentry instead of calling sentry_sdk.init directly.
Tip revision: 0712207
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