xorm/tests/main_test.go
Lunny Xiao ed1a37b1c5
Some checks failed
test cockroach / test cockroach (push) Failing after 3s
test mariadb / test mariadb (push) Failing after 4s
test mysql / test mysql (push) Successful in 5m7s
test mssql / test mssql (push) Successful in 6m2s
test postgres / test postgres (push) Failing after 5s
test mysql8 / test mysql8 (push) Successful in 5m1s
test sqlite / unit test & test sqlite (push) Successful in 9m0s
test tidb / test tidb (push) Successful in 5m16s
Move integrations -> tests (#2314)
Reviewed-on: #2314
2023-07-26 10:44:41 +00:00

14 lines
245 B
Go

// Copyright 2017 The Xorm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package tests
import (
"testing"
)
func TestMain(m *testing.M) {
MainTest(m)
}