2018-04-29 14:21:33 +08:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-28 02:20:29 +08:00
|
|
|
// SPDX-License-Identifier: MIT
|
2018-04-29 14:21:33 +08:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 22:36:47 +08:00
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-04-26 02:03:01 +08:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
webhook_service "code.gitea.io/gitea/services/webhook"
|
2018-04-29 14:21:33 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2023-02-20 00:12:01 +08:00
|
|
|
setting.InitProviderAndLoadCommonSettingsForTest()
|
|
|
|
setting.LoadQueueSettings()
|
2022-04-14 21:58:21 +08:00
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
GiteaRootPath: filepath.Join("..", "..", "..", ".."),
|
2022-04-26 02:03:01 +08:00
|
|
|
SetUp: webhook_service.Init,
|
2022-04-14 21:58:21 +08:00
|
|
|
})
|
2018-04-29 14:21:33 +08:00
|
|
|
}
|