From 701967312680b84776dc53e235605b85305f01ca Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Thu, 19 Mar 2020 02:15:40 +0100 Subject: [PATCH] test: output node version and skip on Node v6 --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c281373ecc..8f38739997 100644 --- a/.travis.yml +++ b/.travis.yml @@ -102,7 +102,9 @@ before_script: - npm list script: - node -e 'require("npmlog").level="verbose"; require("./lib/find-python")(null,()=>{})' - - npm test + - node --version + # Standard no longer supports Node.js v6 + - if [[ $(node --version) != 'v6.17.0' ]]; then npm test; fi - GYP_MSVS_VERSION=2015 GYP_MSVS_OVERRIDE_PATH="C:\\Dummy" python -m pytest notifications: on_success: change