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

testhelper_test.go « backup « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b900cb5d5d7683c0867a01f7a20cbdfe25b4a135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package backup

import (
	"testing"

	"gitlab.com/gitlab-org/gitaly/v14/internal/testhelper"
)

func TestMain(m *testing.M) {
	// gocloud.dev/blob leaks the HTTP connection even if we make sure to close all buckets.
	//nolint:staticcheck
	testhelper.Run(m, testhelper.WithDisabledGoroutineChecker())
}