2022-01-15 16:52:56 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2022-01-15 16:52:56 +00:00
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
package v1_16 //nolint
|
2022-01-15 16:52:56 +00:00
|
|
|
|
|
|
|
import (
|
2022-11-02 08:54:36 +00:00
|
|
|
"testing"
|
|
|
|
|
2024-07-14 13:34:42 +00:00
|
|
|
migration_tests "code.gitea.io/gitea/models/migrations/test"
|
2022-01-15 16:52:56 +00:00
|
|
|
)
|
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
func TestMain(m *testing.M) {
|
2024-07-14 13:34:42 +00:00
|
|
|
migration_tests.MainTest(m)
|
2022-01-15 16:52:56 +00:00
|
|
|
}
|