This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xdegaye
Recipients vinay.sajip, xdegaye
Date 2017-01-06.15:42:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1483717322.96.0.778615356336.issue29177@psf.upfronthosting.co.za>
In-reply-to
Content
To reproduce the test_logging cleanup problem, insert skipTest() in setUp():

diff -r 4a97fa319bf7 Lib/test/test_logging.py
--- a/Lib/test/test_logging.py  Fri Jan 06 09:52:19 2017 +0100
+++ b/Lib/test/test_logging.py  Fri Jan 06 16:39:38 2017 +0100
@@ -1440,6 +1440,7 @@
         """Set up a TCP server to receive log messages, and a SocketHandler
         pointing to that server's address and port."""
         BaseTest.setUp(self)
+        self.skipTest('Skip test in setUp().')
         self.server = server = self.server_class(self.address,
                                                  self.handle_socket, 0.01)
         server.start()
History
Date User Action Args
2017-01-06 15:42:02xdegayesetrecipients: + xdegaye, vinay.sajip
2017-01-06 15:42:02xdegayesetmessageid: <1483717322.96.0.778615356336.issue29177@psf.upfronthosting.co.za>
2017-01-06 15:42:02xdegayelinkissue29177 messages
2017-01-06 15:42:02xdegayecreate