From: Nick Coghlan Date: Tue, 23 Jan 2018 09:10:43 +0000 (+1000) Subject: [3.5] bpo-32620: Remove failing pyenv call from CI config (#5274) X-Git-Tag: v3.5.5rc1~6 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4a4c2743133e195cc3725b78a895d85d69e50089;p=python [3.5] bpo-32620: Remove failing pyenv call from CI config (#5274) * [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). --- diff --git a/.travis.yml b/.travis.yml index fed0052b54..eb98a657b2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,9 +23,6 @@ matrix: # compiler here and the other to run the coverage build. Clang is preferred # in this instance for its better error messages. env: TESTING=cpython - before_install: - # work around https://github.com/travis-ci/travis-ci/issues/8363 - - pyenv global system 3.5 - os: osx language: c compiler: clang diff --git a/Lib/test/test_xmlrpc_net.py b/Lib/test/test_xmlrpc_net.py index b60b82f3e2..c9119b04eb 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):