eth2.0-specs/tests/generators/sync/main.py

21 lines
610 B
Python
Raw Normal View History

2022-08-15 17:22:19 +00:00
from eth2spec.gen_helpers.gen_from_tests.gen import run_state_test_generators
2023-05-02 15:45:21 +00:00
from eth2spec.test.helpers.constants import BELLATRIX, CAPELLA, DENEB, EIP6110
2022-08-15 17:22:19 +00:00
if __name__ == "__main__":
bellatrix_mods = {key: 'eth2spec.test.bellatrix.sync.test_' + key for key in [
'optimistic',
]}
2022-10-13 19:53:40 +00:00
capella_mods = bellatrix_mods
deneb_mods = capella_mods
2023-04-11 07:42:16 +00:00
eip6110_mods = deneb_mods
2022-08-15 17:22:19 +00:00
all_mods = {
BELLATRIX: bellatrix_mods,
2022-10-13 19:53:40 +00:00
CAPELLA: capella_mods,
DENEB: deneb_mods,
2023-04-11 07:42:16 +00:00
EIP6110: eip6110_mods,
2022-08-15 17:22:19 +00:00
}
run_state_test_generators(runner_name="sync", all_mods=all_mods)