From b71ad2f8be5375e2c6aa15fc0be9351d0b3f340b Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Sat, 19 Nov 2022 01:55:01 +0800 Subject: [PATCH] Add EIP4844 sync tests --- tests/generators/sync/main.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/generators/sync/main.py b/tests/generators/sync/main.py index eba3ac1527..8fb3950535 100644 --- a/tests/generators/sync/main.py +++ b/tests/generators/sync/main.py @@ -1,5 +1,5 @@ from eth2spec.gen_helpers.gen_from_tests.gen import run_state_test_generators -from eth2spec.test.helpers.constants import BELLATRIX, CAPELLA +from eth2spec.test.helpers.constants import BELLATRIX, CAPELLA, EIP4844 if __name__ == "__main__": @@ -7,10 +7,12 @@ 'optimistic', ]} capella_mods = bellatrix_mods + eip4844_mods = capella_mods all_mods = { BELLATRIX: bellatrix_mods, CAPELLA: capella_mods, + EIP4844: eip4844_mods, } run_state_test_generators(runner_name="sync", all_mods=all_mods)