mirror of
https://github.com/go-gitea/gitea.git
synced 2025-11-09 23:48:05 -05:00
Fix #35781, #27472 The PR will not correct the wrong numbers automatically. There is a cron task `check_repo_stats` which will be run when Gitea start or midnight. It will correct the numbers.
21 lines
355 B
Go
21 lines
355 B
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package actions
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
FixtureFiles: []string{
|
|
"action_runner_token.yml",
|
|
"action_run.yml",
|
|
"repository.yml",
|
|
},
|
|
})
|
|
}
|