load("@io_bazel_rules_go//go:def.bzl", "go_test") go_test( name = "labels_test", srcs = ["labels_test.go"], args = [ # runs TestAnotherFeature "--skip-labels=boo=hoo", # runs TestFeature # "--labels=boo=hoo", # runs everything # "--skip-labels=other=label", # runs everything # "--labels=component=yada", # skips the entire framework # "--skip-labels=other=label,flaky=true", # skips the entire framework # "--skip-labels=other=label,foo=bar", # force t.Log to print even if the test passes # dont use this in production "--test.v", ], tags = [ "f2-example", # dont use outside f2/examples, stops deps test from failing "integration", ], visibility = ["//visibility:public"], deps = [ "//test/f2", "@tools_gotest_v3//assert", ], )