mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 17:51:57 +00:00
Brings us up to 73%, a bit of buffer room ## Test plan `./dev/check-test-ownership.sh` prints out 73 ## Changelog
22 lines
520 B
Python
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],
|
|
)
|