load("@io_bazel_rules_go//go:def.bzl", "go_test") go_test( name = "namespaces_test", srcs = ["namespaces_test.go"], args = [ # force t.Log to print even if the test passes # dont use this in production "--test.v", ], data = [ "//hack/tools:etcd", "//hack/tools:kube-apiserver", "//hack/tools:kubectl", ], tags = [ "f2-example", # dont use outside f2/examples, stops deps test from failing "integration", ], visibility = ["//visibility:public"], deps = [ "//test/f2", "//test/f2/x/ktest", "//test/f2/x/ktest/envtest", "@io_k8s_api//core/v1:core", "@tools_gotest_v3//assert", ], )