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
8 changes: 4 additions & 4 deletions .github/configs/fork-ranges.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Shared fork ranges for splitting multi-fork releases across parallel runners.
# Features using --until are automatically split using applicable ranges.
# Features using --fork (single fork) are never split.
- label: pre-cancun
- label: pre-shanghai
from: Frontier
until: Shanghai
- label: cancun
from: Cancun
until: Paris
- label: shanghai-cancun
from: Shanghai
until: Cancun
- label: prague
from: Prague
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ jobs:
fail-fast: false
matrix:
include:
- label: pre-cancun
- label: pre-shanghai
from_fork: Frontier
until_fork: Shanghai
- label: cancun
from_fork: Cancun
until_fork: Paris
- label: shanghai-cancun
from_fork: Shanghai
until_fork: Cancun
- label: prague
from_fork: Prague
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,12 @@ def test_case(state_test):
valid_until='"Cancun"',
),
[],
{"passed": 10, "failed": 0, "skipped": 0, "errors": 0},
# All deployed forks from Frontier through Cancun, except
# Constantinople (filled as ConstantinopleFix): Frontier,
# Homestead, TangerineWhistle, SpuriousDragon, Byzantium,
# ConstantinopleFix, Istanbul, Berlin, London, Paris, Shanghai,
# Cancun = 12 forks.
{"passed": 12, "failed": 0, "skipped": 0, "errors": 0},
id="valid_until",
),
pytest.param(
Expand Down
2 changes: 0 additions & 2 deletions packages/testing/src/execution_testing/forks/forks/forks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1340,7 +1340,6 @@ class DAOFork(

class TangerineWhistle(
DAOFork,
ignore=True,
ruleset_name="TANGERINE",
):
"""TangerineWhistle fork (EIP-150)."""
Expand All @@ -1353,7 +1352,6 @@ class SpuriousDragon(
eips.EIP161,
eips.EIP155,
TangerineWhistle,
ignore=True,
ruleset_name="SPURIOUS",
):
"""SpuriousDragon fork."""
Expand Down
Loading