2024-04-02 08:02:05 +00:00
|
|
|
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package v1_23 //nolint
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2024-07-14 13:34:42 +00:00
|
|
|
migration_tests "code.gitea.io/gitea/models/migrations/test"
|
2024-04-02 08:02:05 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2024-07-14 13:34:42 +00:00
|
|
|
migration_tests.MainTest(m)
|
2024-04-02 08:02:05 +00:00
|
|
|
}
|