mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 14:59:06 +00:00
d6efefbb63
(cherry picked from commit2f95143000
) (cherry picked from commitcf77f1e6d9
) (cherry picked from commit0983b62ca0
)
18 lines
293 B
Go
18 lines
293 B
Go
// SPDX-License-Identifier: MIT
|
|
|
|
package actions_test
|
|
|
|
import (
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
|
|
_ "code.gitea.io/gitea/models"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
unittest.MainTest(m, &unittest.TestOptions{
|
|
GiteaRootPath: filepath.Join("..", ".."),
|
|
})
|
|
}
|