Merge pull request #24581 from rallytime/disable_some_flaky_tests

Disabled some flaky tests until we can figure out how to make them more reliable
This commit is contained in:
Justin Findlay 2015-06-11 09:51:41 -06:00
commit 8ffb86edd0
2 changed files with 2 additions and 0 deletions

View file

@ -117,6 +117,7 @@ class SREQTestCase(TestCase):
sreq = self.get_sreq()
assert sreq.send('clear', 'foo') == {'enc': 'clear', 'load': 'foo'}
@skipIf(True, 'Disabled until we can figure out how to make this more reliable.')
def test_timeout(self):
'''
Test SREQ Timeouts

View file

@ -118,6 +118,7 @@ class VTTestCase(TestCase):
# We're pushing the system resources, let's keep going
continue
@skipIf(True, 'Disabled until we can figure out how to make this more reliable.')
def test_isalive_while_theres_data_to_read(self):
expected_data = 'Alive!\n'
term = vt.Terminal('echo "Alive!"', shell=True, stream_stdout=False, stream_stderr=False)