1// Copyright 2019 The Gitea Authors.
2// All rights reserved.
3// SPDX-License-Identifier: MIT
4
5package pull
6
7import (
8 "testing"
9
10 "forgejo.org/models/unittest"
11
12 _ "forgejo.org/models/actions"
13 _ "forgejo.org/models/forgefed"
14)
15
16func TestMain(m *testing.M) {
17 unittest.MainTest(m)
18}