mirror of
https://github.com/python/cpython.git
synced 2025-08-01 23:53:15 +00:00
Don't fail in test_ssl when svn.python.org is unavailable
This commit is contained in:
parent
a71bfc46d0
commit
942d554c5b
1 changed files with 12 additions and 11 deletions
|
@ -156,6 +156,7 @@ class BasicSocketTests(unittest.TestCase):
|
|||
if not test_support.is_resource_enabled('network'):
|
||||
return
|
||||
remote = ("svn.python.org", 443)
|
||||
with test_support.transient_internet(remote[0]):
|
||||
s = ssl.wrap_socket(socket.socket(socket.AF_INET),
|
||||
cert_reqs=ssl.CERT_NONE, ciphers="ALL")
|
||||
s.connect(remote)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue