summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2019-09-03 08:21:52 +0200
committerDaniel Bevenius <daniel.bevenius@gmail.com>2019-09-03 14:24:36 +0200
commiteb2deee8a0d0de09593c1315ac684e6a7ce74c21 (patch)
treea1db14561ba3c82eee294e584c996df176aa5de8 /.travis.yml
parentb03845b9376aec590b89f753a4b7c1b47729c5f8 (diff)
downloadandroid-node-v8-eb2deee8a0d0de09593c1315ac684e6a7ce74c21.tar.gz
android-node-v8-eb2deee8a0d0de09593c1315ac684e6a7ce74c21.tar.bz2
android-node-v8-eb2deee8a0d0de09593c1315ac684e6a7ce74c21.zip
build: remove experimental Python 3 tests
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 <targos@protonmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com>
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml28
1 files changed, 0 insertions, 28 deletions
diff --git a/.travis.yml b/.travis.yml
index 88f0c6cdbd..82a55c76e1 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)"