/usr/lib/python3/dist-packages/hyperlink/test
NameSizeModeActions
__pycache__/-0755rm
common.py24990644editdlrm
test_common.py36810644editdlrm
test_decoded_url.py71310644editdlrm
test_hypothesis.py73990644editdlrm
test_parse.py11070644editdlrm
test_scheme_registration.py30380644editdlrm
test_socket.py14230644editdlrm
test_url.py545910644editdlrm
__init__.py6010644editdlrm
Edit: /usr/lib/python3/dist-packages/hyperlink/test/__init__.py (601B)
# -*- coding: utf-8 -*- """ Tests for hyperlink """ __all = () def _init_hypothesis(): # type: () -> None from os import environ if "CI" in environ: try: from hypothesis import HealthCheck, settings except ImportError: return settings.register_profile( "patience", settings( suppress_health_check=[ HealthCheck.too_slow, HealthCheck.filter_too_much, ] ), ) settings.load_profile("patience") _init_hypothesis()