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