mirror of https://github.com/go-gorm/gorm.git
20 lines
440 B
Bash
Executable File
20 lines
440 B
Bash
Executable File
dialects=("sqlite" "mysql" "postgres" "mssql")
|
|
|
|
if [[ $(pwd) == *"gorm/tests"* ]]; then
|
|
cd ..
|
|
fi
|
|
|
|
for dialect in "${dialects[@]}" ; do
|
|
if [ "$GORM_DIALECT" = "" ] || [ "$GORM_DIALECT" = "${dialect}" ]
|
|
then
|
|
echo "testing ${dialect}..."
|
|
|
|
if [ "$GORM_VERBOSE" = "" ]
|
|
then
|
|
DEBUG=false GORM_DIALECT=${dialect} go test -race ./...
|
|
else
|
|
DEBUG=false GORM_DIALECT=${dialect} go test -race -v ./...
|
|
fi
|
|
fi
|
|
done
|