From ee18238f55e7cb407323f94abc3047c719d318c6 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Tue, 3 Sep 2019 08:21:52 +0200 Subject: [PATCH] build: remove experimental Python 3 tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These tests do not help us to get closer to Python 3 compatibility and they take up valuable time yet they always fail. PR-URL: https://github.com/nodejs/node/pull/29413 Reviewed-By: Michaƫl Zasso Reviewed-By: Daniel Bevenius Reviewed-By: David Carlier Reviewed-By: Beth Griggs --- .travis.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/.travis.yml b/.travis.yml index 88f0c6cdbd2887..82a55c76e19b7f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -87,31 +87,3 @@ jobs: - if [ "${TRAVIS_PULL_REQUEST}" != "false" ]; then bash -x tools/lint-pr-commit-message.sh ${TRAVIS_PULL_REQUEST}; fi - - - name: "Python 3 is EXPERIMENTAL (Py36)" - language: node_js - node_js: "node" - install: - - pyenv global 3.6.7 - - python3.6 -m pip install --upgrade pip - - make lint-py-build - script: - - NODE=$(which node) make lint lint-py - - python3.6 ./configure.py - - NODE=$(which node) make test - - - name: "Python 3 is EXPERIMENTAL (Py37)" - language: node_js - node_js: "node" - install: - - pyenv global 3.7.1 - - python3.7 -m pip install --upgrade pip - - make lint-py-build - script: - - NODE=$(which node) make lint lint-py - - python3.7 ./configure.py - - NODE=$(which node) make test - - allow_failures: - - name: "Python 3 is EXPERIMENTAL (Py36)" - - name: "Python 3 is EXPERIMENTAL (Py37)"