Skip to content

Commit 91dc428

Browse files
committed
fix conflict
1 parent 397f9eb commit 91dc428

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

.circleci/config.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,19 @@ jobs:
168168
command: make citest fork=electra
169169
- store_test_results:
170170
path: tests/core/pyspec/test-reports
171+
test-eip7251:
172+
docker:
173+
- image: circleci/python:3.9
174+
working_directory: ~/specs-repo
175+
steps:
176+
- restore_cache:
177+
key: v3-specs-repo-{{ .Branch }}-{{ .Revision }}
178+
- restore_pyspec_cached_venv
179+
- run:
180+
name: Run py-tests
181+
command: make citest fork=eip7251
182+
- store_test_results:
183+
path: tests/core/pyspec/test-reports
171184
test-whisk:
172185
docker:
173186
- image: circleci/python:3.9
@@ -317,6 +330,9 @@ workflows:
317330
- test-electra:
318331
requires:
319332
- install_pyspec_test
333+
- test-eip7251:
334+
requires:
335+
- install_pyspec_test
320336
- test-whisk:
321337
requires:
322338
- install_pyspec_test

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
needs: [preclear,lint,codespell,table_of_contents]
7272
strategy:
7373
matrix:
74-
version: ["phase0", "altair", "bellatrix", "capella", "deneb", "electra", "whisk", "eip7594"]
74+
version: ["phase0", "altair", "bellatrix", "capella", "deneb", "electra", "eip7251", "whisk", "eip7594"]
7575
steps:
7676
- name: Checkout this repo
7777
uses: actions/[email protected]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ MARKDOWN_FILES = $(wildcard $(SPEC_DIR)/*/*.md) \
3535
$(wildcard $(SPEC_DIR)/_features/*/*/*.md) \
3636
$(wildcard $(SSZ_DIR)/*.md)
3737

38-
ALL_EXECUTABLE_SPEC_NAMES = phase0 altair bellatrix capella deneb electra whisk
38+
ALL_EXECUTABLE_SPEC_NAMES = phase0 altair bellatrix capella deneb electra eip7251 whisk
3939
# The parameters for commands. Use `foreach` to avoid listing specs again.
4040
COVERAGE_SCOPE := $(foreach S,$(ALL_EXECUTABLE_SPEC_NAMES), --cov=eth2spec.$S.$(TEST_PRESET_TYPE))
4141
PYLINT_SCOPE := $(foreach S,$(ALL_EXECUTABLE_SPEC_NAMES), ./eth2spec/$S)

0 commit comments

Comments
 (0)