Skip to content

Commit 76ce334

Browse files
preethimmChromium LUCI CQ
authored and
Chromium LUCI CQ
committed
Disable WPTServe flaky tests on PY3. They fail when run as part of the entire suite
Bug: 1308877 Change-Id: I2bc6becc6fc0ada41260644bd812f436ae9bd12b Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3540715 Reviewed-by: Weizhong Xia <[email protected]> Commit-Queue: Preethi Mohan <[email protected]> Cr-Commit-Position: refs/heads/main@{#983555}
1 parent f83de1e commit 76ce334

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

third_party/blink/tools/blinkpy/web_tests/servers/wptserve_unittest.py

+9
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import json
66
import logging
77
import six
8+
import unittest
89

910
from blinkpy.common.host_mock import MockHost
1011
from blinkpy.common.system.log_testing import LoggingTestCase
@@ -81,6 +82,10 @@ def test_prepare_config(self):
8182
'local-dir': '/mock-checkout/out/Release/gen'
8283
})
8384

85+
@unittest.skipIf(
86+
six.PY3,
87+
'This test is flaky when run as part of the suite. See crbug.com/1308877'
88+
)
8489
def test_start_with_stale_pid(self):
8590
# Allow asserting about debug logs.
8691
self.set_logging_level(logging.DEBUG)
@@ -111,6 +116,10 @@ def test_start_with_stale_pid(self):
111116
self.assertEqual(logs[-1],
112117
'DEBUG: wptserve successfully started (pid = 42)\n')
113118

119+
@unittest.skipIf(
120+
six.PY3,
121+
'This test is flaky when run as part of the suite. See crbug.com/1308877'
122+
)
114123
def test_start_with_unkillable_zombie_process(self):
115124
# Allow asserting about debug logs.
116125
self.set_logging_level(logging.DEBUG)

0 commit comments

Comments
 (0)