load("@io_bazel_rules_go//go:def.bzl", "go_test") go_test( name = "simple_test", srcs = ["simple_test.go"], tags = [ "f2-example", # dont use outside f2/examples, stops deps test from failing "integration", ], visibility = ["//visibility:public"], deps = [ "//test/f2", "@tools_gotest_v3//assert", ], )