[3.5] bpo-32620: Remove failing pyenv call from CI config (#5274) · python/cpython@4a4c274 (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Appearance settings
Commit 4a4c274
authored and
committed
[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).
File tree
2 files changed
lines changed
2 files changed
lines changed
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -23,9 +23,6 @@ matrix: | ||
23 | 23 | # compiler here and the other to run the coverage build. Clang is preferred |
24 | 24 | # in this instance for its better error messages. |
25 | 25 | env: TESTING=cpython |
26 | -before_install: | |
27 | -# work around https://github.com/travis-ci/travis-ci/issues/8363 | |
28 | - - pyenv global system 3.5 | |
29 | 26 | - os: osx |
30 | 27 | language: c |
31 | 28 | compiler: clang |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -7,6 +7,7 @@ | ||
7 | 7 | |
8 | 8 | import xmlrpc.client as xmlrpclib |
9 | 9 | |
10 | +@unittest.skip('XXX: buildbot.python.org/all/xmlrpc/ is gone') | |
10 | 11 | class PythonBuildersTest(unittest.TestCase): |
11 | 12 | |
12 | 13 | def test_python_builders(self): |