mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
281e5d1cfd
* provide validator with real keystore public key * fmt * build errors buildkite * readd imports removed by goimport * gazelle * address broken tests * make reference to filename a param * fmt * imports * gazelle * os remove all * Use better Temp storage for tests * testmain approach to avoid repeating expensive operation for each test * travis lint * fix test * nokeystore in status test * passing * fix goimports
15 lines
389 B
Python
15 lines
389 B
Python
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"],
|
|
)
|