Browse Source

Fix travis script

It seems that the `pushd ... popd` line masks any errors that nosetests command signals, so we put the three commands on different lines.
Jason Grout 8 years ago
parent
commit
a6d8ad3a5d
1 changed files with 4 additions and 2 deletions
  1. 4 2
      scripts/travis_script.sh

+ 4 - 2
scripts/travis_script.sh

@@ -21,8 +21,10 @@ npm run test:coverage || npm run test:coverage
 
 # Run the python tests
 npm run build:serverextension
-pushd jupyterlab && nosetests && popd
-
+python setup.py build
+pushd jupyterlab
+nosetests
+popd
 npm run build:examples
 npm run docs
 cp jupyter-plugins-demo.gif docs