2021-11-19 13:39:57 +00:00
|
|
|
// Copyright 2020 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"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
|
|
|
unittest.MainTest(m, filepath.Join("..", ".."),
|
|
|
|
"attachment.yml",
|
2021-12-06 07:19:28 +00:00
|
|
|
"repo_archiver.yml",
|
2021-12-10 01:27:50 +00:00
|
|
|
"repository.yml",
|
|
|
|
"repo_unit.yml",
|
|
|
|
"repo_indexer_status.yml",
|
2021-12-12 15:48:20 +00:00
|
|
|
"repo_redirect.yml",
|
|
|
|
"watch.yml",
|
|
|
|
"star.yml",
|
|
|
|
"topic.yml",
|
|
|
|
"repo_topic.yml",
|
|
|
|
"user.yml",
|
2021-11-19 13:39:57 +00:00
|
|
|
)
|
|
|
|
}
|