2018-04-29 11:51:33 +05:30
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2021-11-12 20:06:47 +05:30
|
|
|
"code.gitea.io/gitea/models/unittest"
|
2022-04-25 23:33:01 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
|
|
|
webhook_service "code.gitea.io/gitea/services/webhook"
|
2018-04-29 11:51:33 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2022-04-25 23:33:01 +05:30
|
|
|
setting.LoadForTest()
|
|
|
|
setting.NewQueueService()
|
2022-04-14 19:28:21 +05:30
|
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
|
|
GiteaRootPath: filepath.Join("..", "..", "..", ".."),
|
2022-04-25 23:33:01 +05:30
|
|
|
SetUp: webhook_service.Init,
|
2022-04-14 19:28:21 +05:30
|
|
|
})
|
2018-04-29 11:51:33 +05:30
|
|
|
}
|