Disable test_socket_ssl timeout test on Windows.
This commit is contained in:
parent
ccadf84a1b
commit
d49be30938
|
@ -1,5 +1,6 @@
|
||||||
# Test just the SSL support in the socket module, in a moderately bogus way.
|
# Test just the SSL support in the socket module, in a moderately bogus way.
|
||||||
|
|
||||||
|
import sys
|
||||||
from test import test_support
|
from test import test_support
|
||||||
import socket
|
import socket
|
||||||
|
|
||||||
|
@ -26,6 +27,7 @@ def test_basic():
|
||||||
buf = f.read()
|
buf = f.read()
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
|
if not sys.platform.startswith('win'):
|
||||||
def test_timeout():
|
def test_timeout():
|
||||||
test_support.requires('network')
|
test_support.requires('network')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue