...
1load("@io_bazel_rules_go//go:def.bzl", "go_test")
2
3go_test(
4 name = "integration_test",
5 srcs = ["subscriber_test.go"],
6 tags = ["integration"],
7 visibility = ["//visibility:public"],
8 deps = [
9 "//pkg/f8n/kinform/sql",
10 "//pkg/f8n/sovereign/model",
11 "//pkg/f8n/warehouse/cluster",
12 "//pkg/f8n/warehouse/forwarder",
13 "//pkg/f8n/warehouse/oci/layer",
14 "//pkg/f8n/warehouse/oci/remote",
15 "//pkg/f8n/warehouse/pallet",
16 "//test/f2",
17 "//test/f2/x/postgres",
18 "//test/f2/x/warehouse",
19 "@com_github_google_go_containerregistry//pkg/name",
20 "@com_github_google_go_containerregistry//pkg/v1:pkg",
21 "@com_github_jackc_pgx_v4//stdlib",
22 "@com_google_cloud_go_pubsub//:pubsub",
23 ],
24)
View as plain text