You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore(ci|cli): improve coverage ci and compare fixtures python script (#1970)
* chore(cli): improve compare fixtures script.
* chore(ci): add better logging for coverage ci step.
* chore(ci): add prague back for coverage ci.
* chore(ci): add summary test diff to coverage ci, use uv for python.
* Update src/cli/compare_fixtures.py
---------
Co-authored-by: Mario Vega <[email protected]>
ls ${{ github.workspace }}/evmtest_coverage/coverage/BASE_TESTS
149
-
echo "--------------------"
150
-
echo "Ported PATCH tests:"
151
-
ls ${{ github.workspace }}/evmtest_coverage/coverage/PATCH_TESTS
146
+
echo "=== Original BASE (main) test IDs ==="
147
+
uv run python -c "import json; data=json.load(open('${{ github.workspace }}/evmtest_coverage/coverage/BASE_TESTS/.meta/index.json')); [print(tc['id']) for tc in data['test_cases']]"
148
+
echo "=== Ported PATCH test IDs ==="
149
+
uv run python -c "import json; data=json.load(open('${{ github.workspace }}/evmtest_coverage/coverage/PATCH_TESTS/.meta/index.json')); [print(tc['id']) for tc in data['test_cases']]"
0 commit comments