From 4a4c2743133e195cc3725b78a895d85d69e50089 Mon Sep 17 00:00:00 2001 From: Nick Coghlan Date: Tue, 23 Jan 2018 19:10:43 +1000 Subject: [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). --- .travis.yml | 3 --- Lib/test/test_xmlrpc_net.py | 1 + 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index fed0052..eb98a65 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 b60b82f..c9119b0 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): -- cgit v0.12