debian-mirror-gitlab/workhorse/internal/git/testhelper_test.go
2022-07-17 14:43:12 +02:00

15 lines
245 B
Go

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())
}