From 473c42b994ec88ab80584de4efbf1e860c979597 Mon Sep 17 00:00:00 2001 From: protolambda Date: Thu, 24 Oct 2019 00:44:00 +0800 Subject: [PATCH] temporarily disable a few mainnet tests in generator; too long --- test_generators/epoch_processing/main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test_generators/epoch_processing/main.py b/test_generators/epoch_processing/main.py index 0b6c49fb0..d28cb4832 100644 --- a/test_generators/epoch_processing/main.py +++ b/test_generators/epoch_processing/main.py @@ -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'), ])