mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +00:00
Make test_socketserver require the network resource.
Add it back to the list of tests we expect to skip on Windows.
This commit is contained in:
parent
7a76d4b4e4
commit
a86f0c17a1
2 changed files with 3 additions and 0 deletions
|
@ -495,6 +495,7 @@ _expectations = {
|
||||||
test_pwd
|
test_pwd
|
||||||
test_signal
|
test_signal
|
||||||
test_socket_ssl
|
test_socket_ssl
|
||||||
|
test_socketserver
|
||||||
test_sunaudiodev
|
test_sunaudiodev
|
||||||
test_timing
|
test_timing
|
||||||
""",
|
""",
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
# Test suite for SocketServer.py
|
# Test suite for SocketServer.py
|
||||||
|
|
||||||
|
import test_support
|
||||||
from test_support import verbose, verify, TESTFN, TestSkipped
|
from test_support import verbose, verify, TESTFN, TestSkipped
|
||||||
|
test_support.requires('network')
|
||||||
|
|
||||||
from SocketServer import *
|
from SocketServer import *
|
||||||
import socket
|
import socket
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue