Browse Source

travis install node in conda

Saul Shanabrook 6 years ago
parent
commit
b53cfc9723
2 changed files with 1 additions and 4 deletions
  1. 0 3
      .travis.yml
  2. 1 1
      scripts/travis_install.sh

+ 0 - 3
.travis.yml

@@ -1,6 +1,3 @@
-language: node_js
-node_js:
-- 'lts/*'
 cache:
   yarn: true
   directories:

+ 1 - 1
scripts/travis_install.sh

@@ -24,7 +24,7 @@ conda update -q conda
 conda info -a # for debugging
 
 conda remove --name test --all || true
-conda create -q -n test --quiet -c conda-forge notebook pytest python=$PYTHON
+conda create -q -n test --quiet -c conda-forge notebook nodejs pytest python=$PYTHON
 set +ev
 source activate test
 set -ev