mirror of
https://github.com/status-im/eth2.0-specs.git
synced 2025-02-10 01:34:29 +00:00
179cde6780
* Add new check_mods function for generators * Use single qoutes for consistency * Add [ERROR] to the exception & update readme * Fix typos * Fix lint
22 lines
655 B
Python
22 lines
655 B
Python
from eth2spec.gen_helpers.gen_from_tests.gen import run_state_test_generators, check_mods
|
|
from eth2spec.test.helpers.constants import BELLATRIX, CAPELLA, DENEB, ELECTRA
|
|
|
|
|
|
if __name__ == "__main__":
|
|
bellatrix_mods = {key: 'eth2spec.test.bellatrix.sync.test_' + key for key in [
|
|
'optimistic',
|
|
]}
|
|
capella_mods = bellatrix_mods
|
|
deneb_mods = capella_mods
|
|
electra_mods = deneb_mods
|
|
|
|
all_mods = {
|
|
BELLATRIX: bellatrix_mods,
|
|
CAPELLA: capella_mods,
|
|
DENEB: deneb_mods,
|
|
ELECTRA: electra_mods,
|
|
}
|
|
check_mods(all_mods, "sync")
|
|
|
|
run_state_test_generators(runner_name="sync", all_mods=all_mods)
|