...
1load("@io_bazel_rules_go//go:def.bzl", "go_test")
2
3go_test(
4 name = "integration_test",
5 srcs = [
6 "heartbeat_test.go",
7 "main_test.go",
8 "mux_healthcheck_test.go",
9 "mux_test.go",
10 "sql_test.go",
11 "sql_tx_test.go",
12 ],
13 data = [
14 "//hack/tools:etcd",
15 "//hack/tools:kube-apiserver",
16 "//hack/tools:kubectl",
17 ],
18 tags = ["integration"],
19 visibility = ["//visibility:public"],
20 deps = [
21 "//pkg/edge/psqlinjector",
22 "//pkg/f8n/kinform/model",
23 "//test/f2",
24 "//test/f2/x/postgres",
25 "//test/f2/x/pstest",
26 "@com_github_google_uuid//:uuid",
27 "@com_github_stretchr_testify//require",
28 "@com_google_cloud_go_pubsub//:pubsub",
29 "@org_golang_google_api//option",
30 ],
31)
View as plain text