...
1load("@io_bazel_rules_go//go:def.bzl", "go_test")
2
3go_test(
4 name = "integration_test",
5 srcs = ["integration_test.go"],
6 data = [
7 "//hack/tools:etcd",
8 "//hack/tools:kube-apiserver",
9 "//hack/tools:kubectl",
10 ],
11 tags = ["integration"],
12 visibility = ["//visibility:public"],
13 deps = [
14 "//pkg/lib/fog",
15 "//pkg/lib/gcp/metricsscopes",
16 "//test/f2",
17 "//test/f2/integration",
18 "@com_github_stretchr_testify//require",
19 "@io_k8s_sigs_controller_runtime//:controller-runtime",
20 ],
21)
View as plain text