Skip to content

Commit 5a88c38

Browse files
committed
Issue #13434: skip the time.xmlrpc.com test, and reenable the buildbot test.
1 parent 11942a5 commit 5a88c38

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_xmlrpc_net.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ class CurrentTimeTest(unittest.TestCase):
1414
def test_current_time(self):
1515
# Get the current time from xmlrpc.com. This code exercises
1616
# the minimal HTTP functionality in xmlrpclib.
17+
self.skipTest("time.xmlrpc.com is unreliable")
1718
server = xmlrpclib.ServerProxy("http://time.xmlrpc.com/RPC2")
1819
try:
1920
t0 = server.currentTime.getCurrentTime()
@@ -38,7 +39,6 @@ def test_current_time(self):
3839
def test_python_builders(self):
3940
# Get the list of builders from the XMLRPC buildbot interface at
4041
# python.org.
41-
self.skipTest("XMLRPC interface removed in Buildbot 0.8.2")
4242
server = xmlrpclib.ServerProxy("http://www.python.org/dev/buildbot/all/xmlrpc/")
4343
try:
4444
builders = server.getAllBuilders()

0 commit comments

Comments
 (0)