Revision ddd1835c584d2797ff76c12a549d2f5f8d1d0135 authored by Antoine R. Dumont (@ardumont) on 01 April 2019, 14:27:23 UTC, committed by Antoine R. Dumont (@ardumont) on 03 April 2019, 12:57:30 UTC
1 parent 007f3de
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