mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +00:00
f385a1dea6
* no more skip slot cache * imports * deprecated * fix flakeyness * disable in e2e * build * fix viz Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
42 lines
1.2 KiB
Python
42 lines
1.2 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "large",
|
|
testonly = True,
|
|
srcs = [
|
|
"endtoend_test.go",
|
|
"minimal_antiflake_e2e_1_test.go",
|
|
"minimal_antiflake_e2e_2_test.go",
|
|
"minimal_e2e_test.go",
|
|
"minimal_slashing_e2e_test.go",
|
|
],
|
|
args = ["-test.v"],
|
|
data = [
|
|
"//beacon-chain",
|
|
"//slasher",
|
|
"//validator",
|
|
"@com_github_ethereum_go_ethereum//cmd/geth",
|
|
],
|
|
shard_count = 4,
|
|
tags = [
|
|
"block-network",
|
|
"e2e",
|
|
"manual",
|
|
"minimal",
|
|
],
|
|
deps = [
|
|
"//beacon-chain/core/state:go_default_library",
|
|
"//endtoend/components:go_default_library",
|
|
"//endtoend/evaluators:go_default_library",
|
|
"//endtoend/helpers:go_default_library",
|
|
"//endtoend/params:go_default_library",
|
|
"//endtoend/types:go_default_library",
|
|
"//shared/params:go_default_library",
|
|
"//shared/testutil:go_default_library",
|
|
"@com_github_gogo_protobuf//types:go_default_library",
|
|
"@com_github_prysmaticlabs_ethereumapis//eth/v1alpha1:go_default_library",
|
|
"@org_golang_google_grpc//:go_default_library",
|
|
],
|
|
)
|