[Python-checkins] [3.5] bpo-32620: Remove failing pyenv call from CI config (#5274)
larryhastings
webhook-mailer at python.org
Tue Jan 23 04:10:46 EST 2018
https://github.com/python/cpython/commit/4a4c2743133e195cc3725b78a895d85d69e50089
commit: 4a4c2743133e195cc3725b78a895d85d69e50089
branch: 3.5
author: Nick Coghlan <ncoghlan at gmail.com>
committer: larryhastings <larry at hastings.org>
date: 2018-01-23T01:10:43-08:00
summary:
[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).
files:
M .travis.yml
M Lib/test/test_xmlrpc_net.py
diff --git a/.travis.yml b/.travis.yml
index fed0052b54a..eb98a657b27 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 b60b82f3e23..c9119b04eb9 100644
--- a/Lib/test/test_xmlrpc_net.py
+++ b/Lib/test/test_xmlrpc_net.py
@@ -7,6 +7,7 @@
import xmlrpc.client as xmlrpclib
+ at unittest.skip('XXX: buildbot.python.org/all/xmlrpc/ is gone')
class PythonBuildersTest(unittest.TestCase):
def test_python_builders(self):
More information about the Python-checkins
mailing list