29 lines
722 B
Python
29 lines
722 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
|
|
go_test(
|
|
name = "timer_test",
|
|
timeout = "short",
|
|
srcs = [
|
|
"main_test.go",
|
|
"store_intergartion_test.go",
|
|
],
|
|
flaky = True,
|
|
race = "on",
|
|
shard_count = 5,
|
|
deps = [
|
|
"//sessionctx",
|
|
"//testkit",
|
|
"//testkit/testsetup",
|
|
"//timer/api",
|
|
"//timer/runtime",
|
|
"//timer/tablestore",
|
|
"//util/timeutil",
|
|
"@com_github_google_uuid//:uuid",
|
|
"@com_github_ngaut_pools//:pools",
|
|
"@com_github_pingcap_errors//:errors",
|
|
"@com_github_stretchr_testify//require",
|
|
"@io_etcd_go_etcd_tests_v3//integration",
|
|
"@org_uber_go_goleak//:goleak",
|
|
],
|
|
)
|