Codebase list golang-github-jinzhu-gorm / 515b4405-f3b8-4072-9afc-7e4f07f03b33/main test_all.sh
515b4405-f3b8-4072-9afc-7e4f07f03b33/main

Tree @515b4405-f3b8-4072-9afc-7e4f07f03b33/main (Download .tar.gz)

test_all.sh @515b4405-f3b8-4072-9afc-7e4f07f03b33/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