mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
bcea2c1b22
* config: use medalla as default * Tests: align with medalla spec * Config/flag: deprecate medalla feature flag * Update shared/featureconfig/flags.go * Spectest: set genesis forkversion to 0,0,0,0 * Config: set medalla as defat in Configure * Extra space * Shard: use copy * Revert a p2p fork test * Update default medalla for tools * Use medalla config for e2e * Fix E2E Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: Ivan Martinez <ivanthegreatdev@gmail.com>
45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
|
|
# gazelle:ignore geth_deps.go
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "large",
|
|
testonly = True,
|
|
srcs = [
|
|
"endtoend_test.go",
|
|
"long_minimal_e2e_test.go",
|
|
"minimal_e2e_test.go",
|
|
"minimal_slashing_e2e_test.go",
|
|
],
|
|
args = ["-test.v"],
|
|
data = [
|
|
"//beacon-chain",
|
|
"//slasher",
|
|
"//tools/bootnode",
|
|
"//validator",
|
|
"@com_github_ethereum_go_ethereum//cmd/geth",
|
|
],
|
|
shard_count = 3,
|
|
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/slotutil: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",
|
|
],
|
|
)
|