From 1a4bbdfd791ba6afdc0ca1584d3c5ecf15de6031 Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Tue, 16 Mar 2021 00:16:27 +0800 Subject: [PATCH] Disable `test_sync_committees_progress` + mainnet config --- .../epoch_processing/test_process_sync_committee_updates.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/core/pyspec/eth2spec/test/altair/epoch_processing/test_process_sync_committee_updates.py b/tests/core/pyspec/eth2spec/test/altair/epoch_processing/test_process_sync_committee_updates.py index 06473c645..0cf1e7a49 100644 --- a/tests/core/pyspec/eth2spec/test/altair/epoch_processing/test_process_sync_committee_updates.py +++ b/tests/core/pyspec/eth2spec/test/altair/epoch_processing/test_process_sync_committee_updates.py @@ -1,7 +1,9 @@ from eth2spec.test.context import ( PHASE0, PHASE1, - with_all_phases_except, + MINIMAL, spec_state_test, + with_all_phases_except, + with_configs, ) from eth2spec.test.helpers.state import transition_to from eth2spec.test.helpers.epoch_processing import ( @@ -11,6 +13,7 @@ from eth2spec.test.helpers.epoch_processing import ( @with_all_phases_except([PHASE0, PHASE1]) @spec_state_test +@with_configs([MINIMAL], reason="too slow") def test_sync_committees_progress(spec, state): current_epoch = spec.get_current_epoch(state) # NOTE: if not in the genesis epoch, period math below needs to be