load("@io_bazel_rules_go//go:def.bzl", "go_test") go_test( name = "integration_test", srcs = ["promote_test.go"], data = glob(["testdata/**"]), embedsrcs = [ "testdata/minimal-pallet-v1/manifests.yaml", "testdata/minimal-pallet-v2/manifests.yaml", "testdata/minimal-pallet-v3/manifests.yaml", ], tags = ["integration"], visibility = ["//visibility:public"], deps = [ "//pkg/edge/api/mocks", "//pkg/f8n/warehouse/cluster", "//pkg/f8n/warehouse/oci", "//pkg/f8n/warehouse/oci/layer", "//pkg/f8n/warehouse/packagelock", "//pkg/f8n/warehouse/pallet", "//pkg/f8n/warehouse/promote", "//pkg/k8s/object", "//pkg/k8s/runtime/inventory", "//pkg/k8s/unstructured", "//test/f2", "//test/f2/x/warehouse", "@com_github_golang_mock//gomock", "@com_github_stretchr_testify//assert", "@com_github_stretchr_testify//require", ], )