Skip to content

Commit 051ef57

Browse files
committed
fix(tests): EIP-2935, mark 256-block tests as slow
1 parent e8b4151 commit 051ef57

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/prague/eip2935_historical_block_hashes_from_state/test_block_hashes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ def generate_block_check_code(
7878
@pytest.mark.parametrize(
7979
"blocks_before_fork, blocks_after_fork",
8080
[
81-
[1, 2],
82-
[Spec.BLOCKHASH_OLD_WINDOW + 1, 10],
83-
[1, Spec.BLOCKHASH_OLD_WINDOW + 1],
81+
pytest.param(1, 2),
82+
pytest.param(Spec.BLOCKHASH_OLD_WINDOW + 1, 10, marks=pytest.mark.slow),
83+
pytest.param(1, Spec.BLOCKHASH_OLD_WINDOW + 1, marks=pytest.mark.slow),
8484
],
8585
)
8686
@pytest.mark.valid_at_transition_to("Prague")

0 commit comments

Comments
 (0)