debian-mirror-gitlab/workhorse/internal/git/testhelper_test.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
245 B
Go
Raw Normal View History

2022-07-16 23:28:13 +05:30
package git
import (
"os"
"testing"
"github.com/sirupsen/logrus"
"gitlab.com/gitlab-org/gitlab/workhorse/internal/gitaly"
)
func TestMain(m *testing.M) {
gitaly.InitializeSidechannelRegistry(logrus.StandardLogger())
os.Exit(m.Run())
}