cert-manager/test/e2e/suite/BUILD.bazel
James Munnelly 3b7886f083 Move tests into suite/ subdir and utilise new addons system
Signed-off-by: James Munnelly <james@munnelly.eu>
2018-10-18 13:27:05 +01:00

32 lines
774 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "go_default_library",
srcs = ["doc.go"],
importpath = "github.com/jetstack/cert-manager/test/e2e/suite",
tags = ["manual"],
visibility = ["//visibility:public"],
deps = [
"//test/e2e/suite/conformance:go_default_library",
"//test/e2e/suite/issuers:go_default_library",
],
)
filegroup(
name = "package-srcs",
srcs = glob(["**"]),
tags = ["automanaged"],
visibility = ["//visibility:private"],
)
filegroup(
name = "all-srcs",
srcs = [
":package-srcs",
"//test/e2e/suite/conformance:all-srcs",
"//test/e2e/suite/issuers:all-srcs",
],
tags = ["automanaged"],
visibility = ["//visibility:public"],
)