Disabled some flaky tests until we can figure out how to make them more reliable

This commit is contained in:
rallytime 2015-06-10 14:04:14 -06:00
parent b03166cde3
commit c82f135d2e
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)