1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-22 08:47:22 +00:00

fix test django-picklefield version (#4582)

* not print serahub log

* django-picklefield==2.1.1
This commit is contained in:
sniper-py 2020-06-08 21:12:59 +08:00 committed by GitHub
parent 1b34569b5b
commit 7280a3255b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 9 deletions

View File

@ -6,7 +6,7 @@ django-post_office==3.3.0
django-webpack_loader django-webpack_loader
gunicorn gunicorn
pymysql pymysql
django-picklefield django-picklefield==2.1.1
openpyxl openpyxl
qrcode qrcode
django-formtools django-formtools

View File

@ -67,14 +67,14 @@ function run_tests() {
rvalue=0 rvalue=0
fi fi
if [[ ${TRAVIS} != "" ]]; then # if [[ ${TRAVIS} != "" ]]; then
# On travis-ci, dump seahub logs when test finished # # On travis-ci, dump seahub logs when test finished
for logfile in /tmp/logs/*.log; do # for logfile in /tmp/logs/*.log; do
echo -e "\nLog file $logfile:\n" # echo -e "\nLog file $logfile:\n"
cat "${logfile}" # cat "${logfile}"
echo # echo
done # done
fi # fi
exit $rvalue exit $rvalue
} }