https://forge.softwareheritage.org/source/swh-scheduler.git
Raw File
Tip revision: 3c41cef4a83b37d3174633c23e72a52d18d1ec70 authored by Antoine R. Dumont (@ardumont) on 15 February 2019, 13:56:04 UTC
scheduler.task: Remove no longer used Task class
Tip revision: 3c41cef
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