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