github.com/prysmaticlabs/prysm@v1.4.4/spectest/mainnet/phase0/operations/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 "attestation_test.go", 8 "attester_slashing_test.go", 9 "block_header_test.go", 10 "deposit_test.go", 11 "proposer_slashing_test.go", 12 "voluntary_exit_test.go", 13 ], 14 data = glob(["*.yaml"]) + [ 15 "@eth2_spec_tests_mainnet//:test_data", 16 ], 17 shard_count = 4, 18 tags = ["spectest"], 19 deps = ["//spectest/shared/phase0/operations:go_default_library"], 20 )