Revision 3457207b22b30d102cac9d0e679387c1c9b2ba59 authored by Valentin Lorentz on 28 March 2019, 12:27:33 UTC, committed by Valentin Lorentz on 28 March 2019, 12:27:33 UTC
1 parent 246855c
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