summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2010-02-08 15:32:08 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2010-02-08 15:32:08 (GMT)
commite1ec841086c2e99fea818cfbc1deab3c224d0f31 (patch)
tree05089718000835c80618faf91c2c75ebb656cc6f /Lib
parent0e7123fbd47bf1c18182be76294f76ddce5b6a2e (diff)
downloadcpython-e1ec841086c2e99fea818cfbc1deab3c224d0f31.zip
cpython-e1ec841086c2e99fea818cfbc1deab3c224d0f31.tar.gz
cpython-e1ec841086c2e99fea818cfbc1deab3c224d0f31.tar.bz2
logging: skipped listening tests because they're not working reliably.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_logging.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_logging.py b/Lib/test/test_logging.py
index 11c754a..1d3bd1a 100644
--- a/Lib/test/test_logging.py
+++ b/Lib/test/test_logging.py
@@ -1592,6 +1592,7 @@ class ConfigDictTest(BaseTest):
logging.config.stopListening()
t.join(2.0)
+ @unittest.skip("See issue #7857")
def test_listen_config_10_ok(self):
with captured_stdout() as output:
self.setup_via_listener(json.dumps(self.config10))
@@ -1611,6 +1612,7 @@ class ConfigDictTest(BaseTest):
('ERROR', '4'),
], stream=output)
+ @unittest.skip("See issue #7857")
def test_listen_config_1_ok(self):
with captured_stdout() as output:
self.setup_via_listener(textwrap.dedent(ConfigFileTest.config1))