29 lines
731 B
Python
29 lines
731 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
|
|
go_test(
|
|
name = "variable_test",
|
|
timeout = "short",
|
|
srcs = [
|
|
"main_test.go",
|
|
"variable_test.go",
|
|
],
|
|
flaky = True,
|
|
shard_count = 9,
|
|
deps = [
|
|
"//pkg/config",
|
|
"//pkg/kv",
|
|
"//pkg/session",
|
|
"//pkg/sessionctx/variable",
|
|
"//pkg/store/copr",
|
|
"//pkg/testkit",
|
|
"//pkg/testkit/testmain",
|
|
"//pkg/testkit/testsetup",
|
|
"//pkg/util/dbterror/exeerrors",
|
|
"//pkg/util/memory",
|
|
"@com_github_pingcap_failpoint//:failpoint",
|
|
"@com_github_stretchr_testify//require",
|
|
"@com_github_tikv_client_go_v2//tikv",
|
|
"@org_uber_go_goleak//:goleak",
|
|
],
|
|
)
|