Commit b5ef8f51 authored by vitaliii's avatar vitaliii Committed by Commit bot

Disable measurements.repaint_unittest.RepaintUnitTest.testRepaint.

Because flaky.

TBR=nednguyen@google.com
BUG=715962

Review-Url: https://codereview.chromium.org/2849513002
Cr-Commit-Position: refs/heads/master@{#467653}
parent 549b6072
...@@ -2,6 +2,8 @@ ...@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
import unittest
from telemetry import decorators from telemetry import decorators
from telemetry.page import page as page_module from telemetry.page import page as page_module
from telemetry.testing import options_for_unittests from telemetry.testing import options_for_unittests
...@@ -34,7 +36,8 @@ class RepaintUnitTest(page_test_test_case.PageTestTestCase): ...@@ -34,7 +36,8 @@ class RepaintUnitTest(page_test_test_case.PageTestTestCase):
self._options = options_for_unittests.GetCopy() self._options = options_for_unittests.GetCopy()
self._options.browser_options.wpr_mode = wpr_modes.WPR_OFF self._options.browser_options.wpr_mode = wpr_modes.WPR_OFF
@decorators.Disabled('chromeos') # crbug.com/483212 # Previously this test was disabled on chromeos, see crbug.com/483212.
@unittest.skip("flaky") # crbug.com/715962
def testRepaint(self): def testRepaint(self):
ps = self.CreateEmptyPageSet() ps = self.CreateEmptyPageSet()
ps.AddStory(TestRepaintPage(ps, ps.base_dir)) ps.AddStory(TestRepaintPage(ps, ps.base_dir))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment