We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cc2ce3 commit 90861bbCopy full SHA for 90861bb
1 file changed
.travis.yml
@@ -37,9 +37,9 @@ jobs:
37
env: PYTHON_VERSION="2.6" NODE_VERSION="14"
38
before_install:
39
- env
40
- - nvm install $NODE_VERSION
+ - if [ "${OS}" != "Windows_NT" ]; then nvm install $NODE_VERSION; fi
41
- |
42
- if [ "${PYTHON_VERSION}" == "2.6" ]; then
+ if [ "${PYTHON_VERSION}" == "2.6" ] && [ "${OS}" != "Windows_NT" ]; then
43
sudo apt-get update
44
sudo apt-get install -yq software-properties-common
45
sudo add-apt-repository ppa:deadsnakes/ppa -y
@@ -52,6 +52,8 @@ before_install:
52
- which node
53
- python -V
54
- node --version
55
+
56
+ # choco install nodejs
57
install:
58
- npm install -d
59
before_script:
0 commit comments