...
1load("@io_bazel_rules_go//go:def.bzl", "go_test")
2
3go_test(
4 name = "integration_test",
5 srcs = ["reconciler_test.go"],
6 tags = [
7 "integration",
8 ],
9 visibility = ["//visibility:public"],
10 deps = [
11 "//pkg/f8n/warehouse/k8s/apis/v1alpha2",
12 "//pkg/f8n/warehouse/k8s/controllers/lumperctl/internal",
13 "//pkg/f8n/warehouse/oci/cache",
14 "//pkg/k8s/runtime/conditions",
15 "//pkg/k8s/runtime/controller/reconcile/recerr",
16 "//test/f2",
17 "//test/f2/x/warehouse",
18 "@tools_gotest_v3//assert",
19 ],
20)
View as plain text