/snap/core24/1587/usr/lib/python3.12/test/support
NameSizeModeActions
_hypothesis_stubs/-0755rm
__pycache__/-0755rm
ast_helper.py18280644editdlrm
asynchat.py116020644editdlrm
asyncore.py203810644editdlrm
bytecode_helper.py49990644editdlrm
hashlib_helper.py19070644editdlrm
hypothesis_helper.py13830644editdlrm
import_helper.py107350644editdlrm
interpreters.py58080644editdlrm
logging_helper.py9160644editdlrm
os_helper.py242860644editdlrm
pty_helper.py30520644editdlrm
script_helper.py117210644editdlrm
smtpd.py307320755editdlrm
socket_helper.py137940644editdlrm
testcase.py10470644editdlrm
threading_helper.py80490644editdlrm
warnings_helper.py68530644editdlrm
__init__.py802520644editdlrm
Edit: /snap/core24/1587/usr/lib/python3.12/test/support/hypothesis_helper.py (1383B)
import os try: import hypothesis except ImportError: from . import _hypothesis_stubs as hypothesis else: # When using the real Hypothesis, we'll configure it to ignore occasional # slow tests (avoiding flakiness from random VM slowness in CI). hypothesis.settings.register_profile( "slow-is-ok", deadline=None, suppress_health_check=[ hypothesis.HealthCheck.too_slow, hypothesis.HealthCheck.differing_executors, ], ) hypothesis.settings.load_profile("slow-is-ok") # For local development, we'll write to the default on-local-disk database # of failing examples, and also use a pull-through cache to automatically # replay any failing examples discovered in CI. For details on how this # works, see https://hypothesis.readthedocs.io/en/latest/database.html if "CI" not in os.environ: from hypothesis.database import ( GitHubArtifactDatabase, MultiplexedDatabase, ReadOnlyDatabase, ) hypothesis.settings.register_profile( "cpython-local-dev", database=MultiplexedDatabase( hypothesis.settings.default.database, ReadOnlyDatabase(GitHubArtifactDatabase("python", "cpython")), ), ) hypothesis.settings.load_profile("cpython-local-dev")