Codebase list golang-github-jinzhu-gorm / upstream/1.9.1 test_all.sh
upstream/1.9.1

Tree @upstream/1.9.1 (Download .tar.gz)

test_all.sh @upstream/1.9.1raw · history · blame

1
2
3
4
5
dialects=("postgres" "mysql" "mssql" "sqlite")

for dialect in "${dialects[@]}" ; do
    DEBUG=false GORM_DIALECT=${dialect} go test
done