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