23 lines
514 B
Python
23 lines
514 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
|
|
go_test(
|
|
name = "cte_test",
|
|
timeout = "short",
|
|
srcs = [
|
|
"cte_test.go",
|
|
"main_test.go",
|
|
],
|
|
flaky = True,
|
|
shard_count = 8,
|
|
deps = [
|
|
"//pkg/config",
|
|
"//pkg/parser/terror",
|
|
"//pkg/testkit",
|
|
"//pkg/testkit/testsetup",
|
|
"//pkg/types",
|
|
"@com_github_pingcap_failpoint//:failpoint",
|
|
"@com_github_stretchr_testify//require",
|
|
"@org_uber_go_goleak//:goleak",
|
|
],
|
|
)
|