File tree 1 file changed +9
-0
lines changed
third_party/blink/tools/blinkpy/web_tests/servers
1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change 5
5
import json
6
6
import logging
7
7
import six
8
+ import unittest
8
9
9
10
from blinkpy .common .host_mock import MockHost
10
11
from blinkpy .common .system .log_testing import LoggingTestCase
@@ -81,6 +82,10 @@ def test_prepare_config(self):
81
82
'local-dir' : '/mock-checkout/out/Release/gen'
82
83
})
83
84
85
+ @unittest .skipIf (
86
+ six .PY3 ,
87
+ 'This test is flaky when run as part of the suite. See crbug.com/1308877'
88
+ )
84
89
def test_start_with_stale_pid (self ):
85
90
# Allow asserting about debug logs.
86
91
self .set_logging_level (logging .DEBUG )
@@ -111,6 +116,10 @@ def test_start_with_stale_pid(self):
111
116
self .assertEqual (logs [- 1 ],
112
117
'DEBUG: wptserve successfully started (pid = 42)\n ' )
113
118
119
+ @unittest .skipIf (
120
+ six .PY3 ,
121
+ 'This test is flaky when run as part of the suite. See crbug.com/1308877'
122
+ )
114
123
def test_start_with_unkillable_zombie_process (self ):
115
124
# Allow asserting about debug logs.
116
125
self .set_logging_level (logging .DEBUG )
You can’t perform that action at this time.
0 commit comments