...
1load("@io_bazel_rules_go//go:def.bzl", "go_test")
2
3go_test(
4 name = "integration_test",
5 srcs = ["release_push_test.go"],
6 tags = [
7 "integration",
8 "requires-network",
9 ],
10 visibility = ["//visibility:public"],
11 deps = [
12 "//pkg/f8n/warehouse/packagelock",
13 "//pkg/f8n/warehouse/pallet",
14 "//pkg/f8n/warehouse/release",
15 "//test/f2",
16 "//test/f2/x/warehouse",
17 "@com_github_google_go_containerregistry//pkg/registry",
18 "@com_github_stretchr_testify//assert",
19 ],
20)
View as plain text