Revision 37d70d653f4ad3d7efa3e174560d1006830162b7 authored by Valentin Lorentz on 20 November 2018, 15:04:59 UTC, committed by Valentin Lorentz on 21 November 2018, 14:32:35 UTC
Summary:
The PG Storage provides that feature, and the Git loader uses it.
This commit documents that feature, adds it to the Mem Storage,
and changes test_content_missing to test that behavior.

Reviewers: #reviewers, ardumont

Reviewed By: #reviewers, ardumont

Subscribers: swh-public-ci

Differential Revision: https://forge.softwareheritage.org/D680
1 parent 97b356a
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