Revision 750e292a283989914d90fba9a8a981b65a96d859 authored by Antoine R. Dumont (@ardumont) on 21 February 2019, 10:49:35 UTC, committed by Antoine R. Dumont (@ardumont) on 21 February 2019, 11:21:10 UTC
Also:
- add tests to the loading checks
- rename run_from_webserver to make_app_from_configfile

Related T1533
1 parent 2696b47
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