Revision 0294ce4cbf33c7f94799ab913086309158b5ceda authored by Luke Bjerring on 03 July 2018, 16:46:14 UTC, committed by GitHub on 03 July 2018, 16:46:14 UTC
1 parent 5c8e16d
Raw File
conftest.py
import platform
import os

from hypothesis import settings, HealthCheck

impl = platform.python_implementation()

settings.register_profile("ci", settings(max_examples=1000,
                                         suppress_health_check=[HealthCheck.too_slow]))
settings.register_profile("pypy", settings(suppress_health_check=[HealthCheck.too_slow]))

settings.load_profile(os.getenv("HYPOTHESIS_PROFILE",
                                "default" if impl != "PyPy" else "pypy"))
back to top