mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Update web-platform-tests to revision 1e4fe87a7f01c0b5c614c8f601ffa68b4a00662a
This commit is contained in:
parent
4c3f1756da
commit
432648745e
164 changed files with 8354 additions and 595 deletions
|
@ -1,5 +1,6 @@
|
|||
import platform
|
||||
import os
|
||||
import sys
|
||||
|
||||
from hypothesis import settings, HealthCheck
|
||||
|
||||
|
@ -11,3 +12,11 @@ settings.register_profile("pypy", settings(suppress_health_check=[HealthCheck.to
|
|||
|
||||
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])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue