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

26 lines
841 B
Python
Raw Normal View History

2021-10-06 18:11:50 +00:00
from eth2spec.gen_helpers.gen_from_tests.gen import run_state_test_generators, combine_mods
2021-12-22 07:46:18 +00:00
from eth2spec.test.helpers.constants import PHASE0, ALTAIR, BELLATRIX
2019-06-30 13:26:54 +00:00
if __name__ == "__main__":
2021-03-15 16:38:30 +00:00
phase_0_mods = {key: 'eth2spec.test.phase0.genesis.test_' + key for key in [
'initialization',
'validity',
]}
2021-10-06 18:11:50 +00:00
2021-09-15 15:27:20 +00:00
# we have new unconditional lines in `initialize_beacon_state_from_eth1` and we want to test it
2021-10-06 18:11:50 +00:00
altair_mods = phase_0_mods
2021-12-22 07:46:18 +00:00
_new_bellatrix_mods = {key: 'eth2spec.test.bellatrix.genesis.test_' + key for key in [
2021-10-06 18:11:50 +00:00
'initialization',
]}
2021-12-22 07:46:18 +00:00
bellatrix_mods = combine_mods(_new_bellatrix_mods, altair_mods)
2021-10-06 18:11:50 +00:00
2021-03-15 16:38:30 +00:00
all_mods = {
PHASE0: phase_0_mods,
ALTAIR: altair_mods,
2021-12-22 07:46:18 +00:00
BELLATRIX: bellatrix_mods,
2021-03-15 16:38:30 +00:00
}
2021-05-18 16:29:24 +00:00
run_state_test_generators(runner_name="genesis", all_mods=all_mods)