Add support for nightly test vectors (#15312)

* Add tool to download spec tests

* Rename consensus_spec_tests deps

* Make _get_redirected_url more portable

* Rename env variable

* Add a debug print for sanity

* Add changelog file

* Update newly added fulu tests

* Delete some unnecessary white space

* PR fixes

---------

Co-authored-by: Preston Van Loon <preston@pvl.dev>
This commit is contained in:
Justin Traglia
2025-05-23 09:15:34 -05:00
committed by GitHub
parent 58b5aac201
commit f8d895a5ed
159 changed files with 285 additions and 205 deletions

View File

@@ -257,54 +257,16 @@ filegroup(
consensus_spec_version = "v1.6.0-alpha.0" consensus_spec_version = "v1.6.0-alpha.0"
bls_test_version = "v0.1.1" load("@prysm//tools:download_spectests.bzl", "consensus_spec_tests")
http_archive( consensus_spec_tests(
name = "consensus_spec_tests_general", name = "consensus_spec_tests",
build_file_content = """ flavors = {
filegroup( "general": "sha256-W7oKvoM0nAkyitykRxAw6kmCvjYC01IqiNJy0AmCnMM=",
name = "test_data", "minimal": "sha256-ig7/zxomjv6buBWMom4IxAJh3lFJ9+JnY44E7c8ZNP8=",
srcs = glob([ "mainnet": "sha256-mjx+MkXtPhCNv4c4knLYLIkvIdpF7WTjx/ElvGPQzSo=",
"**/*.ssz_snappy", },
"**/*.yaml", version = consensus_spec_version,
]),
visibility = ["//visibility:public"],
)
""",
integrity = "sha256-W7oKvoM0nAkyitykRxAw6kmCvjYC01IqiNJy0AmCnMM=",
url = "https://github.com/ethereum/consensus-spec-tests/releases/download/%s/general.tar.gz" % consensus_spec_version,
)
http_archive(
name = "consensus_spec_tests_minimal",
build_file_content = """
filegroup(
name = "test_data",
srcs = glob([
"**/*.ssz_snappy",
"**/*.yaml",
]),
visibility = ["//visibility:public"],
)
""",
integrity = "sha256-ig7/zxomjv6buBWMom4IxAJh3lFJ9+JnY44E7c8ZNP8=",
url = "https://github.com/ethereum/consensus-spec-tests/releases/download/%s/minimal.tar.gz" % consensus_spec_version,
)
http_archive(
name = "consensus_spec_tests_mainnet",
build_file_content = """
filegroup(
name = "test_data",
srcs = glob([
"**/*.ssz_snappy",
"**/*.yaml",
]),
visibility = ["//visibility:public"],
)
""",
integrity = "sha256-mjx+MkXtPhCNv4c4knLYLIkvIdpF7WTjx/ElvGPQzSo=",
url = "https://github.com/ethereum/consensus-spec-tests/releases/download/%s/mainnet.tar.gz" % consensus_spec_version,
) )
http_archive( http_archive(
@@ -323,6 +285,8 @@ filegroup(
url = "https://github.com/ethereum/consensus-specs/archive/refs/tags/%s.tar.gz" % consensus_spec_version, url = "https://github.com/ethereum/consensus-specs/archive/refs/tags/%s.tar.gz" % consensus_spec_version,
) )
bls_test_version = "v0.1.1"
http_archive( http_archive(
name = "bls_spec_tests", name = "bls_spec_tests",
build_file_content = """ build_file_content = """

View File

@@ -122,7 +122,7 @@ go_test(
"types_test.go", "types_test.go",
], ],
data = glob(["testdata/**"]) + [ data = glob(["testdata/**"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
embed = [":go_default_library"], embed = [":go_default_library"],
deps = [ deps = [

View File

@@ -0,0 +1,3 @@
### Added
- Add ability to download nightly test vectors.

View File

@@ -57,8 +57,7 @@ go_test(
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"testdata/e2e_config.yaml", "testdata/e2e_config.yaml",
"@consensus_spec//:spec_data", "@consensus_spec//:spec_data",
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
"@consensus_spec_tests_minimal//:test_data",
"@eth2_networks//:configs", "@eth2_networks//:configs",
"@holesky_testnet//:configs", "@holesky_testnet//:configs",
"@hoodi_testnet//:configs", "@hoodi_testnet//:configs",

View File

@@ -46,8 +46,7 @@ go_test(
"tags_test.go", "tags_test.go",
], ],
data = [ data = [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
"@consensus_spec_tests_minimal//:test_data",
], ],
embed = [":go_default_library"], embed = [":go_default_library"],
tags = ["spectest"], tags = ["spectest"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["verify_blob_kzg_proof_batch_test.go"], srcs = ["verify_blob_kzg_proof_batch_test.go"],
data = [ data = [
"@consensus_spec_tests_general//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = [ deps = [

View File

@@ -17,7 +17,7 @@ go_test(
"slashings_test.go", "slashings_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["finality_test.go"], srcs = ["finality_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["upgrade_to_altair_test.go"], srcs = ["upgrade_to_altair_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -5,7 +5,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["transition_test.go"], srcs = ["transition_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/altair/fork:go_default_library"], deps = ["//testing/spectest/shared/altair/fork:go_default_library"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["forkchoice_test.go"], srcs = ["forkchoice_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = [ deps = [

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["single_merkle_proof_test.go"], srcs = ["single_merkle_proof_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = [ deps = [

View File

@@ -13,7 +13,7 @@ go_test(
"voluntary_exit_test.go", "voluntary_exit_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["random_test.go"], srcs = ["random_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/altair/sanity:go_default_library"], deps = ["//testing/spectest/shared/altair/sanity:go_default_library"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["rewards_test.go"], srcs = ["rewards_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/altair/rewards:go_default_library"], deps = ["//testing/spectest/shared/altair/rewards:go_default_library"],

View File

@@ -9,7 +9,7 @@ go_test(
"slots_test.go", "slots_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/altair/sanity:go_default_library"], deps = ["//testing/spectest/shared/altair/sanity:go_default_library"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["ssz_static_test.go"], srcs = ["ssz_static_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/altair/ssz_static:go_default_library"], deps = ["//testing/spectest/shared/altair/ssz_static:go_default_library"],

View File

@@ -17,7 +17,7 @@ go_test(
"slashings_test.go", "slashings_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["finality_test.go"], srcs = ["finality_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["upgrade_to_altair_test.go"], srcs = ["upgrade_to_altair_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["transition_test.go"], srcs = ["transition_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/bellatrix/fork:go_default_library"], deps = ["//testing/spectest/shared/bellatrix/fork:go_default_library"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["forkchoice_test.go"], srcs = ["forkchoice_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = [ deps = [

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["single_merkle_proof_test.go"], srcs = ["single_merkle_proof_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = [ deps = [

View File

@@ -14,7 +14,7 @@ go_test(
"voluntary_exit_test.go", "voluntary_exit_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["random_test.go"], srcs = ["random_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/bellatrix/sanity:go_default_library"], deps = ["//testing/spectest/shared/bellatrix/sanity:go_default_library"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["rewards_test.go"], srcs = ["rewards_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/bellatrix/rewards:go_default_library"], deps = ["//testing/spectest/shared/bellatrix/rewards:go_default_library"],

View File

@@ -9,7 +9,7 @@ go_test(
"slots_test.go", "slots_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/bellatrix/sanity:go_default_library"], deps = ["//testing/spectest/shared/bellatrix/sanity:go_default_library"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["ssz_static_test.go"], srcs = ["ssz_static_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/bellatrix/ssz_static:go_default_library"], deps = ["//testing/spectest/shared/bellatrix/ssz_static:go_default_library"],

View File

@@ -17,7 +17,7 @@ go_test(
"slashings_test.go", "slashings_test.go",
], ],
data = [ data = [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["finality_test.go"], srcs = ["finality_test.go"],
data = [ data = [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 1, shard_count = 1,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["upgrade_to_capella_test.go"], srcs = ["upgrade_to_capella_test.go"],
data = [ data = [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 1, shard_count = 1,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["transition_test.go"], srcs = ["transition_test.go"],
data = [ data = [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/capella/fork:go_default_library"], deps = ["//testing/spectest/shared/capella/fork:go_default_library"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["forkchoice_test.go"], srcs = ["forkchoice_test.go"],
data = [ data = [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = [ deps = [

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["single_merkle_proof_test.go"], srcs = ["single_merkle_proof_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = [ deps = [

View File

@@ -16,7 +16,7 @@ go_test(
"withdrawals_test.go", "withdrawals_test.go",
], ],
data = [ data = [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["random_test.go"], srcs = ["random_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/capella/sanity:go_default_library"], deps = ["//testing/spectest/shared/capella/sanity:go_default_library"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["rewards_test.go"], srcs = ["rewards_test.go"],
data = [ data = [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/capella/rewards:go_default_library"], deps = ["//testing/spectest/shared/capella/rewards:go_default_library"],

View File

@@ -9,7 +9,7 @@ go_test(
"slots_test.go", "slots_test.go",
], ],
data = [ data = [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/capella/sanity:go_default_library"], deps = ["//testing/spectest/shared/capella/sanity:go_default_library"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["ssz_static_test.go"], srcs = ["ssz_static_test.go"],
data = [ data = [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/capella/ssz_static:go_default_library"], deps = ["//testing/spectest/shared/capella/ssz_static:go_default_library"],

View File

@@ -17,7 +17,7 @@ go_test(
"slashings_test.go", "slashings_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["finality_test.go"], srcs = ["finality_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["upgrade_to_deneb_test.go"], srcs = ["upgrade_to_deneb_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["transition_test.go"], srcs = ["transition_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/deneb/fork:go_default_library"], deps = ["//testing/spectest/shared/deneb/fork:go_default_library"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["forkchoice_test.go"], srcs = ["forkchoice_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = [ deps = [

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["single_merkle_proof_test.go"], srcs = ["single_merkle_proof_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = [ deps = [

View File

@@ -4,7 +4,7 @@ go_test(
name = "go_default_test", name = "go_default_test",
srcs = ["merkle_proof_test.go"], srcs = ["merkle_proof_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/deneb/merkle_proof:go_default_library"], deps = ["//testing/spectest/shared/deneb/merkle_proof:go_default_library"],

View File

@@ -16,7 +16,7 @@ go_test(
"withdrawals_test.go", "withdrawals_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["random_test.go"], srcs = ["random_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/deneb/sanity:go_default_library"], deps = ["//testing/spectest/shared/deneb/sanity:go_default_library"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["rewards_test.go"], srcs = ["rewards_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/deneb/rewards:go_default_library"], deps = ["//testing/spectest/shared/deneb/rewards:go_default_library"],

View File

@@ -9,7 +9,7 @@ go_test(
"slots_test.go", "slots_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/deneb/sanity:go_default_library"], deps = ["//testing/spectest/shared/deneb/sanity:go_default_library"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["ssz_static_test.go"], srcs = ["ssz_static_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/deneb/ssz_static:go_default_library"], deps = ["//testing/spectest/shared/deneb/ssz_static:go_default_library"],

View File

@@ -18,7 +18,7 @@ go_test(
"slashings_test.go", "slashings_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
deps = ["//testing/spectest/shared/electra/epoch_processing:go_default_library"], deps = ["//testing/spectest/shared/electra/epoch_processing:go_default_library"],
) )

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["finality_test.go"], srcs = ["finality_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["upgrade_to_electra_test.go"], srcs = ["upgrade_to_electra_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["transition_test.go"], srcs = ["transition_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/electra/fork:go_default_library"], deps = ["//testing/spectest/shared/electra/fork:go_default_library"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["forkchoice_test.go"], srcs = ["forkchoice_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = [ deps = [

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["single_merkle_proof_test.go"], srcs = ["single_merkle_proof_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = [ deps = [

View File

@@ -4,7 +4,7 @@ go_test(
name = "go_default_test", name = "go_default_test",
srcs = ["merkle_proof_test.go"], srcs = ["merkle_proof_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/electra/merkle_proof:go_default_library"], deps = ["//testing/spectest/shared/electra/merkle_proof:go_default_library"],

View File

@@ -18,7 +18,7 @@ go_test(
"withdrawals_test.go", "withdrawals_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
deps = ["//testing/spectest/shared/electra/operations:go_default_library"], deps = ["//testing/spectest/shared/electra/operations:go_default_library"],
) )

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["random_test.go"], srcs = ["random_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/electra/sanity:go_default_library"], deps = ["//testing/spectest/shared/electra/sanity:go_default_library"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["rewards_test.go"], srcs = ["rewards_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/electra/rewards:go_default_library"], deps = ["//testing/spectest/shared/electra/rewards:go_default_library"],

View File

@@ -9,7 +9,7 @@ go_test(
"slots_test.go", "slots_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/electra/sanity:go_default_library"], deps = ["//testing/spectest/shared/electra/sanity:go_default_library"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["ssz_static_test.go"], srcs = ["ssz_static_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/electra/ssz_static:go_default_library"], deps = ["//testing/spectest/shared/electra/ssz_static:go_default_library"],

View File

@@ -18,7 +18,7 @@ go_test(
"slashings_test.go", "slashings_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
deps = ["//testing/spectest/shared/fulu/epoch_processing:go_default_library"], deps = ["//testing/spectest/shared/fulu/epoch_processing:go_default_library"],
) )

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["finality_test.go"], srcs = ["finality_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["upgrade_to_fulu_test.go"], srcs = ["upgrade_to_fulu_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["forkchoice_test.go"], srcs = ["forkchoice_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = [ deps = [

View File

@@ -4,7 +4,7 @@ go_test(
name = "go_default_test", name = "go_default_test",
srcs = ["merkle_proof_test.go"], srcs = ["merkle_proof_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/fulu/merkle_proof:go_default_library"], deps = ["//testing/spectest/shared/fulu/merkle_proof:go_default_library"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["custody_groups_test.go"], srcs = ["custody_groups_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/fulu/networking:go_default_library"], deps = ["//testing/spectest/shared/fulu/networking:go_default_library"],

View File

@@ -18,7 +18,7 @@ go_test(
"withdrawals_test.go", "withdrawals_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
deps = ["//testing/spectest/shared/fulu/operations:go_default_library"], deps = ["//testing/spectest/shared/fulu/operations:go_default_library"],
) )

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["random_test.go"], srcs = ["random_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/fulu/sanity:go_default_library"], deps = ["//testing/spectest/shared/fulu/sanity:go_default_library"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["rewards_test.go"], srcs = ["rewards_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/fulu/rewards:go_default_library"], deps = ["//testing/spectest/shared/fulu/rewards:go_default_library"],

View File

@@ -9,7 +9,7 @@ go_test(
"slots_test.go", "slots_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/fulu/sanity:go_default_library"], deps = ["//testing/spectest/shared/fulu/sanity:go_default_library"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["ssz_static_test.go"], srcs = ["ssz_static_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/fulu/ssz_static:go_default_library"], deps = ["//testing/spectest/shared/fulu/ssz_static:go_default_library"],

View File

@@ -17,7 +17,7 @@ go_test(
"slashings_test.go", "slashings_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["finality_test.go"], srcs = ["finality_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -12,7 +12,7 @@ go_test(
"voluntary_exit_test.go", "voluntary_exit_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
shard_count = 4, shard_count = 4,
tags = ["spectest"], tags = ["spectest"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["random_test.go"], srcs = ["random_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/phase0/sanity:go_default_library"], deps = ["//testing/spectest/shared/phase0/sanity:go_default_library"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["rewards_test.go"], srcs = ["rewards_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/phase0/rewards:go_default_library"], deps = ["//testing/spectest/shared/phase0/rewards:go_default_library"],

View File

@@ -9,7 +9,7 @@ go_test(
"slots_test.go", "slots_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/phase0/sanity:go_default_library"], deps = ["//testing/spectest/shared/phase0/sanity:go_default_library"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["shuffle_test.go"], srcs = ["shuffle_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/phase0/shuffling/core/shuffle:go_default_library"], deps = ["//testing/spectest/shared/phase0/shuffling/core/shuffle:go_default_library"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["ssz_static_test.go"], srcs = ["ssz_static_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_mainnet//:test_data", "@consensus_spec_tests//:test_data",
], ],
tags = ["spectest"], tags = ["spectest"],
deps = ["//testing/spectest/shared/phase0/ssz_static:go_default_library"], deps = ["//testing/spectest/shared/phase0/ssz_static:go_default_library"],

View File

@@ -17,7 +17,7 @@ go_test(
"slashings_test.go", "slashings_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
tags = [ tags = [

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["finality_test.go"], srcs = ["finality_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
shard_count = 4, shard_count = 4,

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["upgrade_to_altair_test.go"], srcs = ["upgrade_to_altair_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
shard_count = 4, shard_count = 4,

View File

@@ -5,7 +5,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["transition_test.go"], srcs = ["transition_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
tags = ["spectest"], tags = ["spectest"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["forkchoice_test.go"], srcs = ["forkchoice_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
tags = [ tags = [

View File

@@ -8,7 +8,7 @@ go_test(
"update_ranking_test.go", "update_ranking_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
tags = [ tags = [

View File

@@ -13,7 +13,7 @@ go_test(
"voluntary_exit_test.go", "voluntary_exit_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
tags = [ tags = [

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["random_test.go"], srcs = ["random_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
tags = ["spectest"], tags = ["spectest"],

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["rewards_test.go"], srcs = ["rewards_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
tags = [ tags = [

View File

@@ -8,7 +8,7 @@ go_test(
"slots_test.go", "slots_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
tags = [ tags = [

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["ssz_static_test.go"], srcs = ["ssz_static_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
tags = [ tags = [

View File

@@ -17,7 +17,7 @@ go_test(
"slashings_test.go", "slashings_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
tags = [ tags = [

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["finality_test.go"], srcs = ["finality_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
shard_count = 4, shard_count = 4,

View File

@@ -5,7 +5,7 @@ go_test(
size = "small", size = "small",
srcs = ["upgrade_to_altair_test.go"], srcs = ["upgrade_to_altair_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
shard_count = 4, shard_count = 4,

View File

@@ -5,7 +5,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["transition_test.go"], srcs = ["transition_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
tags = ["spectest"], tags = ["spectest"],

View File

@@ -6,7 +6,7 @@ go_test(
timeout = "short", timeout = "short",
srcs = ["forkchoice_test.go"], srcs = ["forkchoice_test.go"],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
tags = [ tags = [

View File

@@ -8,7 +8,7 @@ go_test(
"update_ranking_test.go", "update_ranking_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
tags = [ tags = [

View File

@@ -14,7 +14,7 @@ go_test(
"voluntary_exit_test.go", "voluntary_exit_test.go",
], ],
data = glob(["*.yaml"]) + [ data = glob(["*.yaml"]) + [
"@consensus_spec_tests_minimal//:test_data", "@consensus_spec_tests//:test_data",
], ],
eth_network = "minimal", eth_network = "minimal",
tags = [ tags = [

Some files were not shown because too many files have changed in this diff Show More