From 71b94e30b1d63c789908482b3b808cc613e57267 Mon Sep 17 00:00:00 2001 From: larryhastings Date: Sun, 4 Feb 2018 11:37:08 -0800 Subject: [PATCH] [3.4] [3.5] bpo-32620: Remove failing pyenv call from CI config (GH-5274) (#5533) * [3.5] Remove failing pyenv call from CI config * Backport XML RPC test skip to 3.5 The buildbot service upgrade removed the XML-RPC interface, so this test no longer works (through no fault of the standard library). (cherry picked from commit 4a4c2743133e195cc3725b78a895d85d69e50089) Co-authored-by: Nick Coghlan --- Lib/test/test_xmlrpc_net.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/test_xmlrpc_net.py b/Lib/test/test_xmlrpc_net.py index b60b82f3e232..c9119b04eb9e 100644 --- a/Lib/test/test_xmlrpc_net.py +++ b/Lib/test/test_xmlrpc_net.py @@ -7,6 +7,7 @@ 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): -- 2.47.3