Codebase list golang-github-jinzhu-gorm / b5280b00-96bd-4477-9583-d34c83f4c536/upstream test_all.sh
b5280b00-96bd-4477-9583-d34c83f4c536/upstream

Tree @b5280b00-96bd-4477-9583-d34c83f4c536/upstream (Download .tar.gz)

test_all.sh @b5280b00-96bd-4477-9583-d34c83f4c536/upstreamraw · 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