blob: ec882a9f97903c648dc4b3d2cafd8b14a3279ebc [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "gittest",
srcs = ["gittest.go"],
importpath = "go.skia.org/infra/perf/go/git/gittest",
visibility = ["//visibility:public"],
deps = [
"//bazel/external/cipd/git",
"//go/git/testutils",
"//perf/go/config",
"//perf/go/git/provider",
"//perf/go/git/providers/git_checkout",
"//perf/go/sql/sqltest",
"@com_github_jackc_pgx_v4//pgxpool",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)