blob: 697c0b86d2e8b9f3ea860138d3ef3abf6f2129a5 [file] [log] [blame]
load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "sqltest",
srcs = ["sqltest.go"],
importpath = "go.skia.org/infra/perf/go/sql/sqltest",
visibility = ["//visibility:public"],
deps = [
"//go/emulators",
"//go/emulators/cockroachdb_instance",
"//go/sql/pool",
"//go/sql/pool/wrapper/timeout",
"//perf/go/sql",
"@com_github_jackc_pgx_v4//pgxpool",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)