mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-05-17 08:16:35 +00:00
https://codeberg.org/forgejo/forgejo/pulls/1543 (cherry picked from commitfbb71f464b) (cherry picked from commit650f849c84) (cherry picked from commit25e0d33dfe) (cherry picked from commit222b70e504) (cherry picked from commit4be04627a7) (cherry picked from commit64fcb25de3) (cherry picked from commit740943d6b0) (cherry picked from commit3c096abf11) (cherry picked from commitda04dcb099) (cherry picked from commitb881d83f1c) (cherry picked from commit7e7492b996)
17 lines
283 B
Go
17 lines
283 B
Go
// SPDX-License-Identifier: MIT
|
|
|
|
package forgejo
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"code.gitea.io/gitea/models/unittest"
|
|
|
|
_ "code.gitea.io/gitea/models"
|
|
_ "code.gitea.io/gitea/models/actions"
|
|
_ "code.gitea.io/gitea/models/activities"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
unittest.MainTest(m)
|
|
}
|