load("@io_bazel_rules_go//go:def.bzl", "go_test") go_test( name = "integration_test", srcs = [ "auth_test.go", "health_test.go", "sql_test.go", ], tags = ["integration"], visibility = ["//visibility:public"], deps = [ "//pkg/lib/fog", "//pkg/lib/uuid", "//pkg/sds/emergencyaccess/authservice", "//pkg/sds/emergencyaccess/authservice/server", "//pkg/sds/emergencyaccess/authservice/setup", "//pkg/sds/emergencyaccess/authservice/storage/database", "//pkg/sds/emergencyaccess/authservice/storage/database/sql", "//pkg/sds/emergencyaccess/config", "//pkg/sds/emergencyaccess/eaconst", "//test/f2", "//test/f2/x/postgres", "@com_github_gin_gonic_gin//:gin", "@com_github_stretchr_testify//assert", "@com_github_stretchr_testify//require", ], )