Skip to content

Commit f1d66ac

Browse files
authored
chore(tests): Disable full HISTORY_SERVE_WINDOW EIP-2935 Test (#2065)
Disables the longest running test in our test set that contains 8000+ blocks and takes around 30 minutes to fill. Reasoning with the disabling of this test: - We are basically testing a smart contract in these tests, if there's a failure in these contracts: - We are never going to catch it with these tests because our tests are not changing - It's not going to be a consensus failure because if the contract behaves in an unexpected way, all clients will still process the same EVM code - Contract has been running in mainnet for sufficient time.
1 parent 3e72c62 commit f1d66ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/prague/eip2935_historical_block_hashes_from_state/test_block_hashes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def test_block_hashes_history_at_transition(
214214
pytest.param(
215215
Spec.HISTORY_SERVE_WINDOW + 1,
216216
False,
217-
marks=pytest.mark.slow,
217+
marks=[pytest.mark.skip("Slow test not relevant anymore"), pytest.mark.slow],
218218
id="full_history_plus_one_check_blockhash_first",
219219
),
220220
],

0 commit comments

Comments
 (0)