load("@io_bazel_rules_go//go:def.bzl", "go_library") go_library( name = "kpoll", srcs = [ "check_options.go", "checks.go", "doc.go", "kpoll.go", "result.go", ], importpath = "edge-infra.dev/test/f2/x/ktest/kpoll", visibility = ["//visibility:public"], deps = [ "//pkg/k8s/object", "//pkg/k8s/runtime/inventory", "//pkg/k8s/testing/kmp", "//pkg/k8s/unstructured", "@io_k8s_apimachinery//pkg/api/errors", "@io_k8s_sigs_controller_runtime//pkg/client", "@tools_gotest_v3//assert/cmp", "@tools_gotest_v3//poll", ], )