mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 02:31:19 +00:00
7fa3ebfaa8
* Add historical summaries to state and processing * Process historical roots test * Passing spec tests * Fix shas and tests * Fix mainnet spectest sha * Fix tests * Update beacon-chain/core/epoch/epoch_processing.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update beacon-chain/core/epoch/epoch_processing_test.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update proto/prysm/v1alpha1/beacon_state.proto Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Update beacon-chain/state/state-native/hasher.go Co-authored-by: Radosław Kapka <rkapka@wp.pl> * Radek's feedback * Getters error * Dont return * Fix else * Fix tests * Fix test * Rm white space Co-authored-by: Radosław Kapka <rkapka@wp.pl>
26 lines
771 B
Python
26 lines
771 B
Python
load("@prysm//tools/go:def.bzl", "go_test")
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = [
|
|
"effective_balance_updates_test.go",
|
|
"eth1_data_reset_test.go",
|
|
"historical_summaries_update_test.go",
|
|
"inactivity_updates_test.go",
|
|
"justification_and_finalization_test.go",
|
|
"participation_flag_updates_test.go",
|
|
"randao_mixes_reset_test.go",
|
|
"registry_updates_test.go",
|
|
"rewards_and_penalties_test.go",
|
|
"slashings_reset_test.go",
|
|
"slashings_test.go",
|
|
],
|
|
data = [
|
|
"@consensus_spec_tests_mainnet//:test_data",
|
|
],
|
|
shard_count = 4,
|
|
tags = ["spectest"],
|
|
deps = ["//testing/spectest/shared/capella/epoch_processing:go_default_library"],
|
|
)
|