Revision 95940a82ba26bcdafd1c03d1f318f2848e89c40e authored by Nicolas Dandrimont on 21 November 2019, 12:57:25 UTC, committed by Nicolas Dandrimont on 21 November 2019, 12:57:25 UTC
1 parent 7c40132
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