github.com/prysmaticlabs/prysm@v1.4.4/spectest/mainnet/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_mainnet//:test_data",
    21      ],
    22      shard_count = 4,
    23      tags = ["spectest"],
    24      deps = [
    25          "//shared/params:go_default_library",
    26          "//spectest/shared/phase0/epoch_processing:go_default_library",
    27      ],
    28  )