Files
tidb/executor/test/partitiontest/BUILD.bazel

19 lines
390 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_test")
go_test(
name = "partitiontest_test",
timeout = "short",
srcs = [
"main_test.go",
"partition_test.go",
],
flaky = True,
race = "on",
shard_count = 5,
deps = [
"//testkit",
"@com_github_pingcap_failpoint//:failpoint",
"@com_github_stretchr_testify//require",
],
)