Files
tidb/executor/kvtest/BUILD.bazel
2022-06-07 15:22:30 +08:00

18 lines
376 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_test")
go_test(
name = "kvtest_test",
srcs = [
"kv_test.go",
"main_test.go",
],
deps = [
"//config",
"//meta/autoid",
"//testkit",
"@com_github_stretchr_testify//require",
"@com_github_tikv_client_go_v2//tikv",
"@org_uber_go_goleak//:goleak",
],
)