23 lines
679 B
Python
23 lines
679 B
Python
from eth2spec.test.helpers.constants import ALTAIR, BELLATRIX, CAPELLA, EIP4844
|
|
from eth2spec.gen_helpers.gen_from_tests.gen import run_state_test_generators
|
|
|
|
|
|
if __name__ == "__main__":
|
|
altair_mods = {key: 'eth2spec.test.altair.light_client.test_' + key for key in [
|
|
'single_merkle_proof',
|
|
'sync',
|
|
'update_ranking',
|
|
]}
|
|
bellatrix_mods = altair_mods
|
|
capella_mods = bellatrix_mods
|
|
eip4844_mods = capella_mods
|
|
|
|
all_mods = {
|
|
ALTAIR: altair_mods,
|
|
BELLATRIX: bellatrix_mods,
|
|
CAPELLA: capella_mods,
|
|
EIP4844: eip4844_mods,
|
|
}
|
|
|
|
run_state_test_generators(runner_name="light_client", all_mods=all_mods)
|