...

Text file src/edge-infra.dev/pkg/f8n/warehouse/promote/integration/BUILD.bazel

Documentation: edge-infra.dev/pkg/f8n/warehouse/promote/integration

     1load("@io_bazel_rules_go//go:def.bzl", "go_test")
     2
     3go_test(
     4    name = "integration_test",
     5    srcs = ["promote_test.go"],
     6    data = glob(["testdata/**"]),
     7    embedsrcs = [
     8        "testdata/minimal-pallet-v1/manifests.yaml",
     9        "testdata/minimal-pallet-v2/manifests.yaml",
    10        "testdata/minimal-pallet-v3/manifests.yaml",
    11    ],
    12    tags = ["integration"],
    13    visibility = ["//visibility:public"],
    14    deps = [
    15        "//pkg/edge/api/mocks",
    16        "//pkg/f8n/warehouse/cluster",
    17        "//pkg/f8n/warehouse/oci",
    18        "//pkg/f8n/warehouse/oci/layer",
    19        "//pkg/f8n/warehouse/packagelock",
    20        "//pkg/f8n/warehouse/pallet",
    21        "//pkg/f8n/warehouse/promote",
    22        "//pkg/k8s/object",
    23        "//pkg/k8s/runtime/inventory",
    24        "//pkg/k8s/unstructured",
    25        "//test/f2",
    26        "//test/f2/x/warehouse",
    27        "@com_github_golang_mock//gomock",
    28        "@com_github_stretchr_testify//assert",
    29        "@com_github_stretchr_testify//require",
    30    ],
    31)

View as plain text