...
1load("@io_bazel_rules_go//go:def.bzl", "go_test")
2
3go_test(
4 name = "integration_test",
5 srcs = [
6 "auth_test.go",
7 "health_test.go",
8 "sql_test.go",
9 ],
10 tags = ["integration"],
11 visibility = ["//visibility:public"],
12 deps = [
13 "//pkg/lib/fog",
14 "//pkg/lib/uuid",
15 "//pkg/sds/emergencyaccess/authservice",
16 "//pkg/sds/emergencyaccess/authservice/server",
17 "//pkg/sds/emergencyaccess/authservice/setup",
18 "//pkg/sds/emergencyaccess/authservice/storage/database",
19 "//pkg/sds/emergencyaccess/authservice/storage/database/sql",
20 "//pkg/sds/emergencyaccess/config",
21 "//pkg/sds/emergencyaccess/eaconst",
22 "//test/f2",
23 "//test/f2/x/postgres",
24 "@com_github_gin_gonic_gin//:gin",
25 "@com_github_stretchr_testify//assert",
26 "@com_github_stretchr_testify//require",
27 ],
28)
View as plain text