1load("@io_bazel_rules_go//go:def.bzl", "go_test") 2 3go_test( 4 name = "integration_test", 5 srcs = ["retriever_test.go"], 6 tags = ["integration"], 7 visibility = ["//visibility:public"], 8 deps = [ 9 "//pkg/sds/emergencyaccess/retriever", 10 "//test/f2", 11 "//test/f2/x/postgres", 12 "@com_github_stretchr_testify//require", 13 ], 14)