Update web-platform-tests to revision eb6b0210d6f0b1b44bc74385de04a2291ce2575c

This commit is contained in:
WPT Sync Bot 2019-02-19 20:48:08 -05:00
parent cc8a9fa928
commit 459fbb1a34
30 changed files with 551 additions and 108 deletions

View file

@ -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

View file

@ -5,6 +5,11 @@ import tarfile
import zipfile
from io import BytesIO
try:
from typing import Any
except ImportError:
pass
logger = logging.getLogger(__name__)

View file

@ -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: