mirror of
https://github.com/python/cpython.git
synced 2025-09-09 02:11:51 +00:00
Issue #13434: skip the time.xmlrpc.com test, and reenable the buildbot test.
This commit is contained in:
parent
11942a58a1
commit
5a88c38fab
1 changed files with 1 additions and 1 deletions
|
@ -14,6 +14,7 @@ class CurrentTimeTest(unittest.TestCase):
|
||||||
def test_current_time(self):
|
def test_current_time(self):
|
||||||
# Get the current time from xmlrpc.com. This code exercises
|
# Get the current time from xmlrpc.com. This code exercises
|
||||||
# the minimal HTTP functionality in xmlrpclib.
|
# the minimal HTTP functionality in xmlrpclib.
|
||||||
|
self.skipTest("time.xmlrpc.com is unreliable")
|
||||||
server = xmlrpclib.ServerProxy("http://time.xmlrpc.com/RPC2")
|
server = xmlrpclib.ServerProxy("http://time.xmlrpc.com/RPC2")
|
||||||
try:
|
try:
|
||||||
t0 = server.currentTime.getCurrentTime()
|
t0 = server.currentTime.getCurrentTime()
|
||||||
|
@ -38,7 +39,6 @@ class CurrentTimeTest(unittest.TestCase):
|
||||||
def test_python_builders(self):
|
def test_python_builders(self):
|
||||||
# Get the list of builders from the XMLRPC buildbot interface at
|
# Get the list of builders from the XMLRPC buildbot interface at
|
||||||
# python.org.
|
# python.org.
|
||||||
self.skipTest("XMLRPC interface removed in Buildbot 0.8.2")
|
|
||||||
server = xmlrpclib.ServerProxy("http://www.python.org/dev/buildbot/all/xmlrpc/")
|
server = xmlrpclib.ServerProxy("http://www.python.org/dev/buildbot/all/xmlrpc/")
|
||||||
try:
|
try:
|
||||||
builders = server.getAllBuilders()
|
builders = server.getAllBuilders()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue