summaryrefslogtreecommitdiff
path: root/Lib/test/test_xmlrpc_net.py
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-11-28 21:12:24 +0100
committerAntoine Pitrou <solipsis@pitrou.net>2011-11-28 21:12:24 +0100
commit5a88c38fab855df4f08a790c45ac7ec2860867ba (patch)
tree93fdc85822d03a8ff25b2bbf52199fd37c88701a /Lib/test/test_xmlrpc_net.py
parent11942a58a190a235f69e8fb193d08a4fca2bcf3c (diff)
downloadcpython-git-5a88c38fab855df4f08a790c45ac7ec2860867ba.tar.gz
Issue #13434: skip the time.xmlrpc.com test, and reenable the buildbot test.
Diffstat (limited to 'Lib/test/test_xmlrpc_net.py')
-rw-r--r--Lib/test/test_xmlrpc_net.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_xmlrpc_net.py b/Lib/test/test_xmlrpc_net.py
index 5df79f0fb6..a8e16f1af9 100644
--- a/Lib/test/test_xmlrpc_net.py
+++ b/Lib/test/test_xmlrpc_net.py
@@ -14,6 +14,7 @@ class CurrentTimeTest(unittest.TestCase):
def test_current_time(self):
# Get the current time from xmlrpc.com. This code exercises
# the minimal HTTP functionality in xmlrpclib.
+ self.skipTest("time.xmlrpc.com is unreliable")
server = xmlrpclib.ServerProxy("http://time.xmlrpc.com/RPC2")
try:
t0 = server.currentTime.getCurrentTime()
@@ -38,7 +39,6 @@ class CurrentTimeTest(unittest.TestCase):
def test_python_builders(self):
# Get the list of builders from the XMLRPC buildbot interface at
# python.org.
- self.skipTest("XMLRPC interface removed in Buildbot 0.8.2")
server = xmlrpclib.ServerProxy("http://www.python.org/dev/buildbot/all/xmlrpc/")
try:
builders = server.getAllBuilders()