github.com/prysmaticlabs/prysm@v1.4.4/spectest/minimal/phase0/epoch_processing/BUILD.bazel (about) 1 load("@prysm//tools/go:def.bzl", "go_test") 2 3 go_test( 4 name = "go_default_test", 5 size = "small", 6 srcs = [ 7 "effective_balance_updates_test.go", 8 "epoch_processing_test.go", 9 "eth1_data_reset_test.go", 10 "historical_roots_update_test.go", 11 "justification_and_finalization_test.go", 12 "participation_record_updates_test.go", 13 "randao_mixes_reset_test.go", 14 "registry_test.go", 15 "rewards_and_penalties_test.go", 16 "slashings_reset_test.go", 17 "slashings_test.go", 18 ], 19 data = glob(["*.yaml"]) + [ 20 "@eth2_spec_tests_minimal//:test_data", 21 ], 22 eth_network = "minimal", 23 tags = [ 24 "minimal", 25 "spectest", 26 ], 27 deps = [ 28 "//shared/params:go_default_library", 29 "//spectest/shared/phase0/epoch_processing:go_default_library", 30 ], 31 )