From e973b8d77b9e550ef2928ad5567a91a1ada20d06 Mon Sep 17 00:00:00 2001 From: Hsiao-Wei Wang Date: Thu, 25 Apr 2024 03:13:05 +0800 Subject: [PATCH] Add EIP-7594 to `TESTGEN_FORKS` --- tests/core/pyspec/eth2spec/test/helpers/constants.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/core/pyspec/eth2spec/test/helpers/constants.py b/tests/core/pyspec/eth2spec/test/helpers/constants.py index 61ae170f0a..067d2a480e 100644 --- a/tests/core/pyspec/eth2spec/test/helpers/constants.py +++ b/tests/core/pyspec/eth2spec/test/helpers/constants.py @@ -26,7 +26,7 @@ # # The forks that are deployed on Mainnet -MAINNET_FORKS = (PHASE0, ALTAIR, BELLATRIX, CAPELLA) +MAINNET_FORKS = (PHASE0, ALTAIR, BELLATRIX, CAPELLA, DENEB) LATEST_FORK = MAINNET_FORKS[-1] # The forks that pytest can run with. # Note: when adding a new fork here, all tests from previous forks with decorator `with_X_and_later` @@ -40,9 +40,9 @@ EIP7594, ) # The forks that have light client specs -LIGHT_CLIENT_TESTING_FORKS = (*[item for item in MAINNET_FORKS if item != PHASE0], DENEB) +LIGHT_CLIENT_TESTING_FORKS = (*[item for item in MAINNET_FORKS if item != PHASE0],) # The forks that output to the test vectors. -TESTGEN_FORKS = (*MAINNET_FORKS, DENEB, ELECTRA, WHISK) +TESTGEN_FORKS = (*MAINNET_FORKS, ELECTRA, EIP7594, WHISK) # Forks allowed in the test runner `--fork` flag, to fail fast in case of typos ALLOWED_TEST_RUNNER_FORKS = (*ALL_PHASES, WHISK)