You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
golog/vendor/gorm.io/datatypes/test_all.sh

11 lines
256 B

#!/bin/bash -e
dialects=("postgres" "postgres_simple" "mysql" "mssql" "sqlite")
for dialect in "${dialects[@]}" ; do
if [ "$GORM_DIALECT" = "" ] || [ "$GORM_DIALECT" = "${dialect}" ]
then
GORM_DIALECT=${dialect} go test --tags "json1"
fi
done