Revision 97981b2f279374b3cf9e32c306971416e07d28b6 authored by David Douard on 06 March 2019, 11:24:46 UTC, committed by David Douard on 18 March 2019, 15:57:14 UTC
set the exception class as class attribute wich allows to get rid of the
__init__ overloading.
1 parent 8bbbf9f
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