mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-23 03:51:29 +00:00
bc3d673ea4
* Begin cleanup for E2E * Parellize testing * Add comments * Add comment
40 lines
1.1 KiB
Python
40 lines
1.1 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_test.go",
|
|
"minimal_e2e_test.go",
|
|
"minimal_slashing_e2e_test.go",
|
|
],
|
|
args = ["-test.v"],
|
|
data = [
|
|
"//beacon-chain",
|
|
"//validator",
|
|
"//slasher",
|
|
"@com_github_ethereum_go_ethereum//cmd/geth",
|
|
],
|
|
shard_count = 3,
|
|
tags = [
|
|
"block-network",
|
|
"e2e",
|
|
"manual",
|
|
"minimal",
|
|
],
|
|
deps = [
|
|
"//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",
|
|
],
|
|
)
|