gear tests are unreliable.

Disable the gear tests until they can be made reliable. These fail
consistently on my laptop, as well as intermittently in the gate.
Note that I can't use self.skip() here because the failure occurs
in setUp().

Change-Id: I7edb0f53228e9a0d24c8bd47626319d896d40cb2
This commit is contained in:
Michael Still 2014-01-15 11:27:42 +11:00
parent ffe7a2cf34
commit e7399f6b2e

View File

@ -42,7 +42,7 @@ class TestGearmanManager(testtools.TestCase):
self.gearman_manager = FakeZuulManager(self.config, self.tasks, self)
def test_manager_function_registered(self):
def xtest_manager_function_registered(self):
""" Check the manager is set up correctly and registered with the
gearman server with an appropriate function """
@ -57,12 +57,12 @@ class TestGearmanManager(testtools.TestCase):
self.assertIn(function_name, self.gearman_server.functions)
def test_task_registered_with_manager(self):
def xtest_task_registered_with_manager(self):
""" Check the FakeRealDbUpgradeRunner_worker task is registered """
self.assertIn('FakeRealDbUpgradeRunner_worker',
self.gearman_manager.tasks.keys())
def test_stop_task(self):
def xtest_stop_task(self):
""" Check that the manager successfully stops a task when requested
"""
pass