Revision ee934b6dfaca791681e7c7bbe095755dc81aa0b7 authored by Antoine R. Dumont (@ardumont) on 03 April 2019, 09:42:43 UTC, committed by Antoine R. Dumont (@ardumont) on 03 April 2019, 13:06:02 UTC
This aligns with other endpoints and allow to extract metrics easily
1 parent 9b35b2d
Raw File
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