summaryrefslogtreecommitdiffhomepage
path: root/test/runtimes/runner/lib/BUILD
blob: d308f41b0ec8483156e3c7738e13ecaec3905f14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
load("//tools:defs.bzl", "go_library", "go_test")

package(licenses = ["notice"])

go_library(
    name = "lib",
    testonly = 1,
    srcs = ["lib.go"],
    visibility = ["//test/runtimes/runner:__pkg__"],
    deps = [
        "//pkg/log",
        "//pkg/test/dockerutil",
        "//pkg/test/testutil",
    ],
)

go_test(
    name = "lib_test",
    size = "small",
    srcs = ["exclude_test.go"],
    library = ":lib",
)