gorm/tests/tests_all.sh

20 lines
458 B
Bash
Raw Normal View History

2020-02-23 07:39:26 +03:00
dialects=("sqlite" "mysql" "postgres" "mssql")
2020-02-23 04:38:48 +03:00
if [[ $(pwd) == *"gorm/tests"* ]]; then
cd ..
fi
for dialect in "${dialects[@]}" ; do
if [ "$GORM_DIALECT" = "" ] || [ "$GORM_DIALECT" = "${dialect}" ]
then
2020-05-30 17:27:20 +03:00
echo "testing ${dialect}..."
2020-02-23 04:38:48 +03:00
if [ "$GORM_VERBOSE" = "" ]
then
2020-05-31 02:57:13 +03:00
DEBUG=false GORM_DIALECT=${dialect} go test -race -count=1 ./...
2020-02-23 04:38:48 +03:00
else
2020-05-31 02:57:13 +03:00
DEBUG=false GORM_DIALECT=${dialect} go test -race -count=1 -v ./...
2020-02-23 04:38:48 +03:00
fi
fi
done