github.com/prysmaticlabs/prysm@v1.4.4/spectest/minimal/phase0/operations/BUILD.bazel (about)

     1  load("@prysm//tools/go:def.bzl", "go_test")
     2  
     3  # Requires --define ssz=minimal
     4  go_test(
     5      name = "go_default_test",
     6      size = "small",
     7      srcs = [
     8          "attestation_test.go",
     9          "attester_slashing_test.go",
    10          "block_header_test.go",
    11          "deposit_test.go",
    12          "proposer_slashing_test.go",
    13          "voluntary_exit_test.go",
    14      ],
    15      data = glob(["*.yaml"]) + [
    16          "@eth2_spec_tests_minimal//:test_data",
    17      ],
    18      eth_network = "minimal",
    19      tags = [
    20          "minimal",
    21          "spectest",
    22      ],
    23      deps = ["//spectest/shared/phase0/operations:go_default_library"],
    24  )