...
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 = [
12 "integration",
13 ],
14 visibility = ["//visibility:public"],
15 deps = [
16 "//pkg/lib/fog",
17 "//pkg/sds/lanoutage/scheduler",
18 "//test/f2",
19 "//test/f2/x/ktest",
20 "@com_github_stretchr_testify//assert",
21 "@io_k8s_api//apps/v1:apps",
22 "@io_k8s_api//core/v1:core",
23 "@io_k8s_apimachinery//pkg/api/resource",
24 "@io_k8s_apimachinery//pkg/apis/meta/v1:meta",
25 "@io_k8s_sigs_controller_runtime//:controller-runtime",
26 ],
27)
View as plain text