Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@


@with_light_client
@spec_state_test_with_matching_config
@with_config_overrides(
{
"BLOB_SCHEDULE": sample_blob_schedule(initial_epoch=1, interval=1),
},
emit=False,
)
@spec_state_test_with_matching_config
@with_presets([MINIMAL], reason="too slow")
def test_light_client_data_collection(spec, state):
# Start test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@


@with_light_client
@spec_state_test_with_matching_config
@with_config_overrides(
{
"BLOB_SCHEDULE": sample_blob_schedule(),
},
emit=False,
)
@spec_state_test_with_matching_config
@with_presets([MINIMAL], reason="too slow")
def test_light_client_sync(spec, state):
# Start test
Expand Down Expand Up @@ -289,13 +289,13 @@ def test_light_client_sync(spec, state):


@with_light_client
@spec_state_test_with_matching_config
@with_config_overrides(
{
"BLOB_SCHEDULE": sample_blob_schedule(),
},
emit=False,
)
@spec_state_test_with_matching_config
@with_presets([MINIMAL], reason="too slow")
def test_supply_sync_committee_from_past_update(spec, state):
# Advance the chain, so that a `LightClientUpdate` from the past is available
Expand Down Expand Up @@ -329,13 +329,13 @@ def test_supply_sync_committee_from_past_update(spec, state):


@with_light_client
@spec_state_test_with_matching_config
@with_config_overrides(
{
"BLOB_SCHEDULE": sample_blob_schedule(),
},
emit=False,
)
@spec_state_test_with_matching_config
@with_presets([MINIMAL], reason="too slow")
def test_advance_finality_without_sync_committee(spec, state):
# Start test
Expand Down Expand Up @@ -423,13 +423,13 @@ def test_advance_finality_without_sync_committee(spec, state):


@with_light_client
@spec_state_test_with_matching_config
@with_config_overrides(
{
"BLOB_SCHEDULE": sample_blob_schedule(),
},
emit=False,
)
@spec_state_test_with_matching_config
@with_presets([MINIMAL], reason="too slow")
def test_light_client_sync_no_force_update(spec, state):
"""Test that force update does not occur before timeout threshold is reached.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ def setup_test(spec, state):


@with_light_client
@spec_state_test_with_matching_config
@with_config_overrides(
{
"BLOB_SCHEDULE": sample_blob_schedule(),
},
emit=False,
)
@spec_state_test_with_matching_config
def test_process_light_client_update_not_timeout(spec, state):
genesis_block, store = setup_test(spec, state)

Expand Down Expand Up @@ -70,13 +70,13 @@ def test_process_light_client_update_not_timeout(spec, state):


@with_light_client
@spec_state_test_with_matching_config
@with_config_overrides(
{
"BLOB_SCHEDULE": sample_blob_schedule(),
},
emit=False,
)
@spec_state_test_with_matching_config
@with_presets([MINIMAL], reason="too slow")
def test_process_light_client_update_at_period_boundary(spec, state):
genesis_block, store = setup_test(spec, state)
Expand Down Expand Up @@ -111,13 +111,13 @@ def test_process_light_client_update_at_period_boundary(spec, state):


@with_light_client
@spec_state_test_with_matching_config
@with_config_overrides(
{
"BLOB_SCHEDULE": sample_blob_schedule(),
},
emit=False,
)
@spec_state_test_with_matching_config
@with_presets([MINIMAL], reason="too slow")
def test_process_light_client_update_timeout(spec, state):
genesis_block, store = setup_test(spec, state)
Expand Down Expand Up @@ -152,13 +152,13 @@ def test_process_light_client_update_timeout(spec, state):


@with_light_client
@spec_state_test_with_matching_config
@with_config_overrides(
{
"BLOB_SCHEDULE": sample_blob_schedule(),
},
emit=False,
)
@spec_state_test_with_matching_config
@with_presets([MINIMAL], reason="too slow")
def test_process_light_client_update_finality_updated(spec, state):
_, store = setup_test(spec, state)
Expand Down