From 73ffd3f2036179ed54591ef0455e5ba5694ae5bd Mon Sep 17 00:00:00 2001 From: Zachary Ware Date: Sun, 8 Oct 2017 01:31:23 -0500 Subject: bpo-31724: Skip test_xmlrpc_net (GH-3921) With the upgrade of buildbot.python.org from Buildbot 0.8.x to 0.9.x, the xmlrpc interface has been removed. This test is now skipped until it can be rewritten to query a suitable substitute. --- Lib/test/test_xmlrpc_net.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Lib/test/test_xmlrpc_net.py') diff --git a/Lib/test/test_xmlrpc_net.py b/Lib/test/test_xmlrpc_net.py index ae0a28e721..f3652b86f7 100644 --- a/Lib/test/test_xmlrpc_net.py +++ b/Lib/test/test_xmlrpc_net.py @@ -4,6 +4,8 @@ from test import support import xmlrpc.client as xmlrpclib + +@unittest.skip('XXX: buildbot.python.org/all/xmlrpc/ is gone') class PythonBuildersTest(unittest.TestCase): def test_python_builders(self): -- cgit v1.2.1