Codebase list golang-github-jinzhu-gorm / fresh-snapshots/main test_all.sh
fresh-snapshots/main

Tree @fresh-snapshots/main (Download .tar.gz)

test_all.sh @fresh-snapshots/mainraw · 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