swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: bf393fd73bfb1f33fd53057818d2417a7d1df4d9 authored by Valentin Lorentz on 02 September 2019, 09:28:07 UTC
Add support for origin_url in origin_metadata_*.
Tip revision: bf393fd
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