소스 검색

Fix invocation on Travis

Steven Silvester 8 년 전
부모
커밋
54c8e07f96
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      scripts/travis_script.sh

+ 1 - 1
scripts/travis_script.sh

@@ -12,7 +12,7 @@ export PATH="$HOME/miniconda/bin:$PATH"
 
 if [[ $GROUP == tests ]]; then
     # Make sure we can start and kill the lab server
-    jupyterlab launch --no-browser &
+    jupyter lab --no-browser &
     TASK_PID=$!
     # Make sure the task is running
     ps -p $TASK_PID || exit 1