https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 0ebe89edfb1677112c9db968e7fa5e6b755326d1 authored by Anne van Kesteren on 28 May 2018, 13:26:49 UTC
Use the The 3-Clause BSD License from opensource.org
Tip revision: 0ebe89e
conftest.py
import platform
import os
import sys

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"))

# these can't even be imported on Py3, so totally ignore it even from collection
ignore_dirs = ["serve", "wptserve"]

collect_ignore = []
if sys.version_info[0] >= 3:
    for d in ignore_dirs:
        path = os.path.join(os.path.dirname(__file__), d)
        collect_ignore.extend([os.path.join(root, f)
                               for root, _, files in os.walk(path)
                               for f in files])
back to top