Revision 101a1310b6112a0f7bdcef704cba7a17422bfd30 authored by David Douard on 21 November 2019, 12:50:21 UTC, committed by David Douard on 21 November 2019, 12:50:21 UTC
1 parent 104fee0
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