summaryrefslogtreecommitdiff
path: root/workhorse/internal/git/testhelper_test.go
blob: 8261dcd125f8714dcd23a5a35883414e56c24cca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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())
}