Automatic update from web-platform-testsRemove dead code (wptrunner.hosts) -- Remove default host from browser env options -- Stop using server-locations.txt -- Remove duplicate copies of subdomains/hostnames wpt-commits: e1504e0c28e0dcb9323f881cb3582c7cb54b24a0, 1b4f253cc9fd6f63c7bb74d176969a15868c6af6, fef555b5fd43686e529ba612fbcfde05036e397c, 040654c78f3f021512a1f22b9b3b99925bd52d37 wpt-pr: 8614 wpt-commits: e1504e0c28e0dcb9323f881cb3582c7cb54b24a0, 1b4f253cc9fd6f63c7bb74d176969a15868c6af6, fef555b5fd43686e529ba612fbcfde05036e397c, 040654c78f3f021512a1f22b9b3b99925bd52d37 wpt-pr: 8614
23 lines
841 B
Python
23 lines
841 B
Python
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"))
|
|
|
|
# serve can't even be imported on Py3, so totally ignore it even from collection
|
|
collect_ignore = []
|
|
if sys.version_info[0] >= 3:
|
|
serve = os.path.join(os.path.dirname(__file__), "serve")
|
|
collect_ignore.extend([os.path.join(root, f)
|
|
for root, _, files in os.walk(serve)
|
|
for f in files])
|