summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2015-12-29 02:15:35 +0100
committerStefan Krah <skrah@bytereef.org>2015-12-29 02:15:35 +0100
commit150660eefd90e8004beb034ce885befed44df309 (patch)
tree1cd2a9f71961c935f55148602ccfae211c481dd8
parent2335f44d8e3b71814b26583f4942ee16738b7486 (diff)
downloadcpython-git-150660eefd90e8004beb034ce885befed44df309.tar.gz
Issue #25940: Make buildbots usable again until a solution is found.
-rw-r--r--Lib/test/test_ssl.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
index 548feebb82..d1a908826d 100644
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -1342,6 +1342,7 @@ class MemoryBIOTests(unittest.TestCase):
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 @@ class NetworkedBIOTests(unittest.TestCase):
% (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)