Revision 12a2dd634422052a46b1523282ea1c3c59a1d20f authored by Antoine Lambert on 08 January 2019, 13:44:52 UTC, committed by Antoine Lambert on 09 January 2019, 15:16:16 UTC
1 parent fc7c534
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