forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBUILD.bazel
54 lines (53 loc) · 1.49 KB
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
load("@io_bazel_rules_go//go:def.bzl", "go_test")
go_test(
name = "tests_test",
timeout = "short",
srcs = [
"main_test.go",
"tidb_serial_test.go",
"tidb_test.go",
],
flaky = True,
shard_count = 50,
deps = [
"//config",
"//ddl/util",
"//domain",
"//extension",
"//kv",
"//metrics",
"//parser",
"//parser/ast",
"//parser/auth",
"//parser/mysql",
"//server",
"//server/internal/column",
"//server/internal/resultset",
"//server/internal/testserverclient",
"//server/internal/testutil",
"//server/internal/util",
"//session",
"//sessionctx/variable",
"//store/mockstore",
"//store/mockstore/unistore",
"//testkit",
"//testkit/testsetup",
"//util",
"//util/cpuprofile",
"//util/plancodec",
"//util/resourcegrouptag",
"//util/topsql",
"//util/topsql/collector",
"//util/topsql/collector/mock",
"//util/topsql/state",
"//util/topsql/stmtstats",
"@com_github_go_sql_driver_mysql//:mysql",
"@com_github_pingcap_errors//:errors",
"@com_github_pingcap_failpoint//:failpoint",
"@com_github_stretchr_testify//require",
"@com_github_tikv_client_go_v2//tikv",
"@com_github_tikv_client_go_v2//tikvrpc",
"@io_opencensus_go//stats/view",
"@org_uber_go_goleak//:goleak",
],
)