21 lines
488 B
Python
21 lines
488 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
|
|
go_test(
|
|
name = "readonlytest_test",
|
|
timeout = "short",
|
|
srcs = [
|
|
"main_test.go",
|
|
"readonly_test.go",
|
|
],
|
|
flaky = True,
|
|
deps = [
|
|
"//pkg/kv",
|
|
"//pkg/testkit",
|
|
"//pkg/testkit/testsetup",
|
|
"@com_github_go_sql_driver_mysql//:mysql",
|
|
"@com_github_stretchr_testify//require",
|
|
"@io_opencensus_go//stats/view",
|
|
"@org_uber_go_goleak//:goleak",
|
|
],
|
|
)
|