prysm-pulse/shared/testutil/BUILD.bazel

15 lines
389 B
Python
Raw Normal View History

load("@io_bazel_rules_go//go:def.bzl", "go_library")
go_library(
name = "go_default_library",
testonly = True,
srcs = [
"checkbit.go",
"log.go",
"tempdir.go",
],
importpath = "github.com/prysmaticlabs/prysm/shared/testutil",
visibility = ["//visibility:public"],
deps = ["@com_github_sirupsen_logrus//hooks/test:go_default_library"],
)