1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-05-05 22:46:53 +00:00

[travis] Fix travis script

This commit is contained in:
zhengxie 2019-01-25 15:49:16 +08:00
parent 6d7ba7af62
commit 2ae6373866

View File

@ -33,7 +33,7 @@ before_scipt: true
# int & start seahub server, run seahub tests # int & start seahub server, run seahub tests
script: 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: after_success:
# notify seafile-docs to rebuild if master is updated # notify seafile-docs to rebuild if master is updated