...

Text file src/edge-infra.dev/pkg/sds/etcd/operator/internal/integration/BUILD.bazel

Documentation: edge-infra.dev/pkg/sds/etcd/operator/internal/integration

     1load("@io_bazel_rules_go//go:def.bzl", "go_test")
     2
     3go_test(
     4    name = "integration_test",
     5    srcs = ["e2e_test.go"],
     6    data = glob([
     7        "testdata/**",
     8    ]),
     9    tags = [
    10        "integration",
    11        "requires-network",
    12    ],
    13    visibility = ["//visibility:public"],
    14    deps = [
    15        "//pkg/sds/ien/node",
    16        "//test/f2",
    17        "//test/f2/integration",
    18        "//test/f2/x/ktest",
    19        "@com_github_stretchr_testify//assert",
    20        "@com_github_stretchr_testify//require",
    21        "@io_k8s_api//core/v1:core",
    22        "@io_k8s_apimachinery//pkg/api/errors",
    23        "@io_k8s_apimachinery//pkg/apis/meta/v1:meta",
    24        "@io_k8s_apimachinery//pkg/util/wait",
    25        "@io_k8s_apimachinery//pkg/watch",
    26        "@io_k8s_client_go//kubernetes",
    27        "@io_k8s_client_go//kubernetes/scheme",
    28        "@io_k8s_client_go//rest",
    29        "@io_k8s_client_go//tools/remotecommand",
    30    ],
    31)

View as plain text