Revision 3c849b5db7a1bb80c3d5d67931bd77576fc3f867 authored by Nicolas Dandrimont on 28 March 2019, 17:41:19 UTC, committed by Nicolas Dandrimont on 28 March 2019, 17:41:19 UTC
1 parent 742dd4f
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