Disable eip7732 tests like whisk-style

This commit is contained in:
Hsiao-Wei Wang 2024-07-04 23:43:22 +08:00 committed by Potuz
parent 614284c32a
commit eb3382faa5
3 changed files with 3 additions and 18 deletions

View File

@ -194,19 +194,6 @@ jobs:
command: make citest fork=eip7594 command: make citest fork=eip7594
- store_test_results: - store_test_results:
path: tests/core/pyspec/test-reports path: tests/core/pyspec/test-reports
test-eip7732:
docker:
- image: circleci/python:3.9
working_directory: ~/specs-repo
steps:
- restore_cache:
key: v3-specs-repo-{{ .Branch }}-{{ .Revision }}
- restore_pyspec_cached_venv
- run:
name: Run py-tests
command: make citest fork=eip7732
- store_test_results:
path: tests/core/pyspec/test-reports
table_of_contents: table_of_contents:
docker: docker:
- image: circleci/node:10.16.3 - image: circleci/node:10.16.3

View File

@ -72,7 +72,7 @@ jobs:
needs: [lint,codespell,table_of_contents] needs: [lint,codespell,table_of_contents]
strategy: strategy:
matrix: matrix:
version: ["phase0", "altair", "bellatrix", "capella", "deneb", "electra", "whisk", "eip7594", "eip7732"] version: ["phase0", "altair", "bellatrix", "capella", "deneb", "electra", "whisk", "eip7594"]
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4

View File

@ -38,14 +38,13 @@ ALL_PHASES = (
ELECTRA, ELECTRA,
# Experimental patches # Experimental patches
EIP7594, EIP7594,
EIP7732,
) )
# The forks that have light client specs # The forks that have light client specs
LIGHT_CLIENT_TESTING_FORKS = (*[item for item in MAINNET_FORKS if item != PHASE0],) LIGHT_CLIENT_TESTING_FORKS = (*[item for item in MAINNET_FORKS if item != PHASE0],)
# The forks that output to the test vectors. # The forks that output to the test vectors.
TESTGEN_FORKS = (*MAINNET_FORKS, ELECTRA, EIP7594, WHISK, EIP7732) TESTGEN_FORKS = (*MAINNET_FORKS, ELECTRA, EIP7594, WHISK)
# Forks allowed in the test runner `--fork` flag, to fail fast in case of typos # Forks allowed in the test runner `--fork` flag, to fail fast in case of typos
ALLOWED_TEST_RUNNER_FORKS = (*ALL_PHASES, WHISK) ALLOWED_TEST_RUNNER_FORKS = (*ALL_PHASES, WHISK, EIP7732)
# NOTE: the same definition as in `pysetup/md_doc_paths.py` # NOTE: the same definition as in `pysetup/md_doc_paths.py`
PREVIOUS_FORK_OF = { PREVIOUS_FORK_OF = {
@ -70,7 +69,6 @@ POST_FORK_OF = {
BELLATRIX: CAPELLA, BELLATRIX: CAPELLA,
CAPELLA: DENEB, CAPELLA: DENEB,
DENEB: ELECTRA, DENEB: ELECTRA,
ELECTRA: EIP7732,
} }
ALL_PRE_POST_FORKS = POST_FORK_OF.items() ALL_PRE_POST_FORKS = POST_FORK_OF.items()