Welcome to mirror list, hosted at ThFree Co, Russian Federation.

testhelper_test.go « git « internal « workhorse - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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())
}