load("@io_bazel_rules_go//go:def.bzl", "go_test") go_test( name = "integration_test", srcs = [ "heartbeat_test.go", "main_test.go", "mux_healthcheck_test.go", "mux_test.go", "sql_test.go", "sql_tx_test.go", ], data = [ "//hack/tools:etcd", "//hack/tools:kube-apiserver", "//hack/tools:kubectl", ], tags = ["integration"], visibility = ["//visibility:public"], deps = [ "//pkg/edge/psqlinjector", "//pkg/f8n/kinform/model", "//test/f2", "//test/f2/x/postgres", "//test/f2/x/pstest", "@com_github_google_uuid//:uuid", "@com_github_stretchr_testify//require", "@com_google_cloud_go_pubsub//:pubsub", "@org_golang_google_api//option", ], )