diff options
author | Eli Bendersky <eliben@gmail.com> | 2011-07-23 12:00:31 (GMT) |
---|---|---|
committer | Eli Bendersky <eliben@gmail.com> | 2011-07-23 12:00:31 (GMT) |
commit | 7cd94a1e232b3af6ab6df363336907fc4bce53f6 (patch) | |
tree | 25161f29dc467d7eaf6fb92c092410d16668b5ac | |
parent | 714c53c540bc2687f62d475d0f0948d80a53f469 (diff) | |
download | cpython-7cd94a1e232b3af6ab6df363336907fc4bce53f6.zip cpython-7cd94a1e232b3af6ab6df363336907fc4bce53f6.tar.gz cpython-7cd94a1e232b3af6ab6df363336907fc4bce53f6.tar.bz2 |
Issue #11049: skip a test that fails on some buildbots
-rw-r--r-- | Lib/test/test_support.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_support.py b/Lib/test/test_support.py index 8640908..6322754 100644 --- a/Lib/test/test_support.py +++ b/Lib/test/test_support.py @@ -30,6 +30,7 @@ class TestSupport(unittest.TestCase): self.test_get_attribute) self.assertRaises(unittest.SkipTest, support.get_attribute, self, "foo") + @unittest.skip("failing buildbots") def test_get_original_stdout(self): self.assertEqual(support.get_original_stdout(), sys.stdout) |