Revision 63f50a5e660f3718db22f7f636843c2e2db0d3a5 authored by Nicolas Dandrimont on 11 April 2019, 10:15:49 UTC, committed by Nicolas Dandrimont on 11 April 2019, 12:55:43 UTC
1 parent cf99702
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