tahoe-lafs/src/allmydata/test/__init__.py
Jean-Paul Calderone 354dceda79 Get rid of last returnValue use
Supporting it with Eliot is challenging and we don't actually need it.
2019-02-26 13:45:39 -05:00

63 lines
2.1 KiB
Python

from foolscap.logging.incident import IncidentQualifier
class NonQualifier(IncidentQualifier):
def check_event(self, ev):
return False
def disable_foolscap_incidents():
# Foolscap-0.2.9 (at least) uses "trailing delay" in its default incident
# reporter: after a severe log event is recorded (thus triggering an
# "incident" in which recent events are dumped to a file), a few seconds
# of subsequent events are also recorded in the incident file. The timer
# that this leaves running will cause "Unclean Reactor" unit test
# failures. The simplest workaround is to disable this timer. Note that
# this disables the timer for the entire process: do not call this from
# regular runtime code; only use it for unit tests that are running under
# Trial.
#IncidentReporter.TRAILING_DELAY = None
#
# Also, using Incidents more than doubles the test time. So we just
# disable them entirely.
from foolscap.logging.log import theLogger
iq = NonQualifier()
theLogger.setIncidentQualifier(iq)
# we disable incident reporting for all unit tests.
disable_foolscap_incidents()
def _configure_hypothesis():
from os import environ
from hypothesis import (
HealthCheck,
settings,
)
settings.register_profile(
"ci",
suppress_health_check=[
# CPU resources available to CI builds typically varies
# significantly from run to run making it difficult to determine
# if "too slow" data generation is a result of the code or the
# execution environment. Prevent these checks from
# (intermittently) failing tests that are otherwise fine.
HealthCheck.too_slow,
],
# With the same reasoning, disable the test deadline.
deadline=None,
)
profile_name = environ.get("TAHOE_LAFS_HYPOTHESIS_PROFILE", "default")
settings.load_profile(profile_name)
_configure_hypothesis()
import sys
if sys.platform == "win32":
from allmydata.windows.fixups import initialize
initialize()
from eliot import to_file
to_file(open("eliot.log", "w"))