https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: 39d886bc4b09da88d1e9c3faed935022e9a3d4c2 authored by Jenkins for Software Heritage on 22 June 2020, 12:07:03 UTC
New upstream version 0.2.2
Tip revision: 39d886b
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