temporarily disable a few mainnet tests in generator; too long

This commit is contained in:
protolambda 2019-10-24 00:44:00 +08:00
parent 9deda149da
commit 473c42b994
No known key found for this signature in database
GPG Key ID: EC89FDBB2B4C7623
1 changed files with 2 additions and 1 deletions

View File

@ -45,7 +45,8 @@ if __name__ == "__main__":
create_provider('registry_updates', test_process_registry_updates, 'minimal'),
create_provider('registry_updates', test_process_registry_updates, 'mainnet'),
create_provider('rewards_and_penalties', test_process_rewards_and_penalties, 'minimal'),
create_provider('rewards_and_penalties', test_process_rewards_and_penalties, 'mainnet'),
# runs full epochs filled with data, with uncached ssz. Disabled for now.
# create_provider('rewards_and_penalties', test_process_rewards_and_penalties, 'mainnet'),
create_provider('slashings', test_process_slashings, 'minimal'),
create_provider('slashings', test_process_slashings, 'mainnet'),
])