19 lines
548 B
Python
Raw Normal View History

2022-08-16 01:22:19 +08:00
from eth2spec.gen_helpers.gen_from_tests.gen import run_state_test_generators
2022-11-19 01:55:01 +08:00
from eth2spec.test.helpers.constants import BELLATRIX, CAPELLA, EIP4844
2022-08-16 01:22:19 +08:00
if __name__ == "__main__":
bellatrix_mods = {key: 'eth2spec.test.bellatrix.sync.test_' + key for key in [
'optimistic',
]}
2022-10-13 14:53:40 -05:00
capella_mods = bellatrix_mods
2022-11-19 01:55:01 +08:00
eip4844_mods = capella_mods
2022-08-16 01:22:19 +08:00
all_mods = {
BELLATRIX: bellatrix_mods,
2022-10-13 14:53:40 -05:00
CAPELLA: capella_mods,
2022-11-19 01:55:01 +08:00
EIP4844: eip4844_mods,
2022-08-16 01:22:19 +08:00
}
run_state_test_generators(runner_name="sync", all_mods=all_mods)