Temporarily disable flaky test.

test.unit.obj.test_replicator.TestObjectReplicator.test_replicate_lockup_detector
is failing a lot in the gate. Let's disable it for now so that other
patches can continue to land.

Change-Id: I1790ebcbc0c8d075c2786aebca4e8ccf7547b178
This commit is contained in:
Samuel Merritt 2018-03-05 17:51:03 -08:00
parent 488fc6627a
commit 63e6c75efb

View File

@ -30,7 +30,8 @@ from eventlet.green import subprocess
from eventlet import Timeout, sleep
from test.unit import (debug_logger, patch_policies, make_timestamp_iter,
mocked_http_conn, mock_check_drive, skip_if_no_xattrs)
mocked_http_conn, mock_check_drive, skip_if_no_xattrs,
SkipTest)
from swift.common import utils
from swift.common.utils import (hash_path, mkdirs, normalize_timestamp,
storage_directory)
@ -2010,6 +2011,7 @@ class TestObjectReplicator(unittest.TestCase):
"next_part_power set in policy 'one'. Skipping", warnings)
def test_replicate_lockup_detector(self):
raise SkipTest("this is not a reliable test and must be fixed")
cur_part = '0'
df = self.df_mgr.get_diskfile('sda', cur_part, 'a', 'c', 'o',
policy=POLICIES[0])