Revision 880aa9cb62cd20ef4d142689813b28c6f61559b0 authored by Antoine R. Dumont (@ardumont) on 13 November 2018, 09:59:41 UTC, committed by Antoine R. Dumont (@ardumont) on 14 November 2018, 15:07:33 UTC
1 parent 3f05ada
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