blob: 8ba0651db53e16206dddbfe40c591f61325f6ce9 [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/testutils/unittest",
"//perf/go/sql/migrations",
"//perf/go/sql/migrations/cockroachdb",
"@com_github_jackc_pgx_v4//pgxpool",
"@com_github_stretchr_testify//assert",
"@com_github_stretchr_testify//require",
],
)