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