mirror of
https://github.com/ethereum/consensus-specs.git
synced 2026-01-14 13:27:54 -05:00
17 lines
492 B
Python
17 lines
492 B
Python
|
|
from eth2spec.test.helpers.constants import FULU
|
|
from eth2spec.gen_helpers.gen_from_tests.gen import run_state_test_generators, check_mods
|
|
|
|
|
|
if __name__ == "__main__":
|
|
fulu_mods = {key: 'eth2spec.test.fulu.networking.test_' + key for key in [
|
|
'compute_columns_for_custody_group',
|
|
'get_custody_groups',
|
|
]}
|
|
all_mods = {
|
|
FULU: fulu_mods
|
|
}
|
|
check_mods(all_mods, "networking")
|
|
|
|
run_state_test_generators(runner_name="networking", all_mods=all_mods)
|