]> granicus.if.org Git - python/commitdiff
Make test_socketserver require the network resource.
authorTim Peters <tim.peters@gmail.com>
Tue, 18 Sep 2001 02:18:57 +0000 (02:18 +0000)
committerTim Peters <tim.peters@gmail.com>
Tue, 18 Sep 2001 02:18:57 +0000 (02:18 +0000)
Add it back to the list of tests we expect to skip on Windows.

Lib/test/regrtest.py
Lib/test/test_socketserver.py

index 632ac0babc89d344f12c546a5f78ad9d5011dee1..16d51ea913a7eee86c746f8cec952ae31efaacd4 100755 (executable)
@@ -495,6 +495,7 @@ _expectations = {
         test_pwd
         test_signal
         test_socket_ssl
+        test_socketserver
         test_sunaudiodev
         test_timing
         """,
index 6bce9b34edd36e85fa04f3b5d458f370ce9c9150..d3cd5a6bcfe1338a77ca8ad9fc2a116992eea596 100644 (file)
@@ -1,6 +1,8 @@
 # Test suite for SocketServer.py
 
+import test_support
 from test_support import verbose, verify, TESTFN, TestSkipped
+test_support.requires('network')
 
 from SocketServer import *
 import socket