Files
tidb/pkg/executor/test/txn/BUILD.bazel
2025-08-20 19:51:02 +00:00

26 lines
640 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_test")
go_test(
name = "txn_test",
timeout = "short",
srcs = [
"main_test.go",
"txn_test.go",
],
flaky = True,
shard_count = 11,
deps = [
"//pkg/config",
"//pkg/config/kerneltype",
"//pkg/errno",
"//pkg/meta/autoid",
"//pkg/testkit",
"//pkg/testkit/testfailpoint",
"@com_github_pingcap_failpoint//:failpoint",
"@com_github_stretchr_testify//require",
"@com_github_tikv_client_go_v2//tikv",
"@io_opencensus_go//stats/view",
"@org_uber_go_goleak//:goleak",
],
)