Skip to content

Commit 7576232

Browse files
authored
Run pytest tests in release action (#4702)
Now that the release action is stable again, we can/should run the pytest tests. Reverts the following PR: * #4610
1 parent 7b38b1f commit 7576232

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/release.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,24 @@ jobs:
4343
exit 1
4444
fi
4545
46+
# Ensure framework tests pass
47+
- name: Run tests for framework
48+
run: |
49+
cd consensus-specs
50+
make test component=fw
51+
52+
# Ensure minimal tests pass
53+
- name: Run tests for minimal
54+
run: |
55+
cd consensus-specs
56+
make test component=pyspec preset=minimal
57+
58+
# Ensure mainnet tests pass
59+
- name: Run tests for mainnet
60+
run: |
61+
cd consensus-specs
62+
make test component=pyspec preset=mainnet
63+
4664
# Write reference tests to the spec tests repo
4765
- name: Generate reference tests
4866
run: |

0 commit comments

Comments
 (0)