diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-31 01:22:15 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-03-31 01:22:15 (GMT) |
commit | 3c7c355e67562aba62fbd84d91e0bd14660eeab8 (patch) | |
tree | 29565f8e48e18f2c2f7ca23cf8eb4593a1699645 /Lib | |
parent | 0862d6ed8f75ba77933ad6afe061ca3ef6ee6737 (diff) | |
download | cpython-3c7c355e67562aba62fbd84d91e0bd14660eeab8.zip cpython-3c7c355e67562aba62fbd84d91e0bd14660eeab8.tar.gz cpython-3c7c355e67562aba62fbd84d91e0bd14660eeab8.tar.bz2 |
Issue #11557: disable test_logging.test_no_kwargs (fail on most buildbots)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_logging.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py index bfb2404..18222ea 100644 --- a/Lib/test/test_logging.py +++ b/Lib/test/test_logging.py @@ -2406,6 +2406,7 @@ class BasicConfigTest(unittest.TestCase): logging.shutdown() super(BasicConfigTest, self).tearDown() + @unittest.skipIf(True, "test disabled, issue #11557") def test_no_kwargs(self): logging.basicConfig() |