load("@io_bazel_rules_go//go:def.bzl", "go_test") go_test( name = "integration_test", srcs = ["sql_test.go"], tags = [ "integration", ], visibility = ["//visibility:public"], deps = [ "//pkg/f8n/devinfra/testinfra/model", "//pkg/f8n/devinfra/testinfra/sql", "//pkg/f8n/devinfra/testinfra/sql/schema", "//test/f2", "//test/f2/x/postgres", "@com_github_jackc_pgx_v4//stdlib", "@tools_gotest_v3//assert", ], )