mirror of
https://github.com/servo/servo.git
synced 2025-08-23 22:35:33 +01:00
Update web-platform-tests to revision eb6b0210d6f0b1b44bc74385de04a2291ce2575c
This commit is contained in:
parent
cc8a9fa928
commit
459fbb1a34
30 changed files with 551 additions and 108 deletions
|
@ -1,4 +1,4 @@
|
|||
flake8==3.6.0
|
||||
flake8==3.7.6
|
||||
pycodestyle==2.5.0
|
||||
pyflakes==2.1.0
|
||||
pep8-naming==0.7.0
|
||||
|
|
|
@ -5,6 +5,11 @@ import tarfile
|
|||
import zipfile
|
||||
from io import BytesIO
|
||||
|
||||
try:
|
||||
from typing import Any
|
||||
except ImportError:
|
||||
pass
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
|
|
|
@ -289,7 +289,7 @@ def run_tests(config, test_paths, product, **kwargs):
|
|||
logger.suite_end()
|
||||
if repeat_until_unexpected and unexpected_total > 0:
|
||||
break
|
||||
if len(test_loader.test_ids) == skipped_tests:
|
||||
if repeat_count == 1 and len(test_loader.test_ids) == skipped_tests:
|
||||
break
|
||||
|
||||
if test_total == 0:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue