1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-04-28 03:10:45 +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
gunicorn
pymysql
django-picklefield
django-picklefield==2.1.1
openpyxl
qrcode
django-formtools

View File

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