swh:1:snp:eb70f1f85391e4b077c211bec36af0061c4bf937
Raw File
Tip revision: dc7c1e0ad049d40f908fae5e6aeeb00c252c0db9 authored by Valentin Lorentz on 05 June 2019, 11:18:14 UTC
Add test for snapshot/release counters.
Tip revision: dc7c1e0
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