sourcegraph/dev/ci/helpers/BUILD.bazel
Noah S-C e1974fe9f5
chore(bazel): update ownership tags to increase coverage (#63001)
Brings us up to 73%, a bit of buffer room


## Test plan

`./dev/check-test-ownership.sh` prints out 73


## Changelog
2024-05-31 14:10:29 +00:00

22 lines
520 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_library")
load("//dev:go_defs.bzl", "go_test")
go_library(
name = "helpers",
srcs = ["bazeldo.go"],
importpath = "github.com/sourcegraph/sourcegraph/dev/ci/helpers",
tags = [TAG_INFRA_DEVINFRA],
visibility = ["//visibility:public"],
deps = [
"//lib/errors",
"@com_github_grafana_regexp//:regexp",
],
)
go_test(
name = "helpers_test",
srcs = ["bazeldo_test.go"],
embed = [":helpers"],
tags = [TAG_INFRA_DEVINFRA],
)