diff options
| author | Eli Bendersky <eliben@gmail.com> | 2011-07-23 15:00:31 +0300 |
|---|---|---|
| committer | Eli Bendersky <eliben@gmail.com> | 2011-07-23 15:00:31 +0300 |
| commit | 7cd94a1e232b3af6ab6df363336907fc4bce53f6 (patch) | |
| tree | 25161f29dc467d7eaf6fb92c092410d16668b5ac | |
| parent | 714c53c540bc2687f62d475d0f0948d80a53f469 (diff) | |
| download | cpython-git-7cd94a1e232b3af6ab6df363336907fc4bce53f6.tar.gz | |
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 864090882d..6322754a83 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) |
