diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-11-10 22:37:33 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-11-10 22:37:33 (GMT) |
commit | 38c1a4d1f4397381edaf9c67990ecb329d0e8132 (patch) | |
tree | 822ba82156c24161388fab72c8db9bfaa32f185d /Lib | |
parent | c40b25fd682ca48182d351c9b5089423fdcacb80 (diff) | |
download | cpython-38c1a4d1f4397381edaf9c67990ecb329d0e8132.zip cpython-38c1a4d1f4397381edaf9c67990ecb329d0e8132.tar.gz cpython-38c1a4d1f4397381edaf9c67990ecb329d0e8132.tar.bz2 |
Merged revisions 86404 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r86404 | antoine.pitrou | 2010-11-10 23:36:43 +0100 (mer., 10 nov. 2010) | 3 lines
Disable test_python_builders in test_xmlrpc_net, following buildbot upgrade on python.org
........
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_xmlrpc_net.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_xmlrpc_net.py b/Lib/test/test_xmlrpc_net.py index 217d65e..b8426ac 100644 --- a/Lib/test/test_xmlrpc_net.py +++ b/Lib/test/test_xmlrpc_net.py @@ -38,6 +38,7 @@ 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() |