1
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-10-07 07:43:16 +00:00
forgejo/models/actions/main_test.go

19 lines
313 B
Go
Raw Normal View History

// 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",
},
})
}