We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11942a5 commit 5a88c38Copy full SHA for 5a88c38
1 file changed
Lib/test/test_xmlrpc_net.py
@@ -14,6 +14,7 @@ class CurrentTimeTest(unittest.TestCase):
14
def test_current_time(self):
15
# Get the current time from xmlrpc.com. This code exercises
16
# the minimal HTTP functionality in xmlrpclib.
17
+ self.skipTest("time.xmlrpc.com is unreliable")
18
server = xmlrpclib.ServerProxy("http://time.xmlrpc.com/RPC2")
19
try:
20
t0 = server.currentTime.getCurrentTime()
@@ -38,7 +39,6 @@ def test_current_time(self):
38
39
def test_python_builders(self):
40
# Get the list of builders from the XMLRPC buildbot interface at
41
# python.org.
- self.skipTest("XMLRPC interface removed in Buildbot 0.8.2")
42
server = xmlrpclib.ServerProxy("http://www.python.org/dev/buildbot/all/xmlrpc/")
43
44
builders = server.getAllBuilders()
0 commit comments