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