From 2ae637386608c5c38ef37dff84e49e37fd5de5b6 Mon Sep 17 00:00:00 2001 From: zhengxie Date: Fri, 25 Jan 2019 15:49:16 +0800 Subject: [PATCH] [travis] Fix travis script --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f52f805b03..66887560da 100644 --- a/.travis.yml +++ b/.travis.yml @@ -33,7 +33,7 @@ before_scipt: true # int & start seahub server, run seahub tests script: - - .travis/test_seahub_changes.sh && ./tests/seahubtests.sh init && ./tests/seahubtests.sh runserver && ./tests/seahubtests.sh test || true + - .travis/test_seahub_changes.sh; rc=$?; if [[ $rc == 0 ]]; then ./tests/seahubtests.sh init && ./tests/seahubtests.sh runserver && ./tests/seahubtests.sh test; else true; fi after_success: # notify seafile-docs to rebuild if master is updated