1load("@io_bazel_rules_go//go:def.bzl", "go_test") 2 3go_test( 4 name = "pstest_test", 5 srcs = ["pstest_test.go"], 6 tags = [ 7 "f2-example", # dont use outside f2/examples, stops deps test from failing 8 "integration", 9 ], 10 visibility = ["//visibility:public"], 11 deps = [ 12 "//test/f2", 13 "//test/f2/x/pstest", 14 "@com_google_cloud_go_pubsub//:pubsub", 15 "@org_golang_google_api//option", 16 "@tools_gotest_v3//assert", 17 "@tools_gotest_v3//poll", 18 ], 19)