(original) (raw)
changeset: 99704:9d0c15425b59 user: Stefan Krah skrah@bytereef.org date: Tue Dec 29 02:15:35 2015 +0100 files: Lib/test/test_ssl.py description: Issue #25940: Make buildbots usable again until a solution is found. diff -r 510ff609cb4f -r 9d0c15425b59 Lib/test/test_ssl.py --- a/Lib/test/test_ssl.py Tue Dec 29 00:11:36 2015 +0100 +++ b/Lib/test/test_ssl.py Tue Dec 29 02:15:35 2015 +0100 @@ -1342,6 +1342,7 @@ self.assertRaises(TypeError, bio.write, 1) +@unittest.skipIf(True, "temporarily disabled: see #25940") class NetworkedTests(unittest.TestCase): def test_connect(self): @@ -1711,6 +1712,7 @@ % (count, func.__name__)) return ret + @unittest.skipIf(True, "temporarily disabled: see #25940") def test_handshake(self): with support.transient_internet("svn.python.org"): sock = socket.socket(socket.AF_INET) /skrah@bytereef.org