Files
tidb/pkg/executor/test/unstabletest/BUILD.bazel

27 lines
653 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_test")
go_test(
name = "unstabletest_test",
timeout = "short",
srcs = [
"main_test.go",
"memory_test.go",
],
flaky = True,
shard_count = 2,
deps = [
"//pkg/config",
"//pkg/meta/autoid",
"//pkg/session/sessmgr",
"//pkg/testkit",
"//pkg/util",
"//pkg/util/dbterror/exeerrors",
"//pkg/util/memory",
"//pkg/util/skip",
"@com_github_stretchr_testify//require",
"@com_github_tikv_client_go_v2//tikv",
"@io_opencensus_go//stats/view",
"@org_uber_go_goleak//:goleak",
],
)