Skip to content

Commit

Permalink
rename test
Browse files Browse the repository at this point in the history
  • Loading branch information
winsvega committed Sep 30, 2024
1 parent fe63845 commit 9f4b969
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 217 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ jobs:
with:
# TODO: non-test modules such as __init__.py or spec.py could effect coverage - in this case we should
# fill all applicable tests (i.e., all the test_*.py files in or under the changed module's directory)
include_all_old_new_renamed_files: true
output_renamed_files_as_deleted_and_added: true
files_yaml: |
tests:
- tests/**/test_*.py
Expand All @@ -40,7 +42,13 @@ jobs:
- name: Report changed python test moudules
if: steps.changed-tests.outputs.tests_any_changed == 'true'
run: |
echo "${{ toJson(steps.changed-tests.outputs) }}"
echo "Changed python test modules: ${{ steps.changed-tests.outputs.tests_all_changed_files }}"
echo "All changed files: ${{ steps.changed-tests.outputs.tests_all_changed_and_modified_files }}"
echo "All deleted files: ${{ steps.changed-tests.outputs.tests_all_deleted_files }}"
echo "All renamed files: ${{ steps.changed-tests.outputs.tests_all_renamed_files }}"
echo "All renamed files (new names): ${{ steps.changed-tests.outputs.tests_all_renamed_new_files }}"
echo "All renamed files (old names): ${{ steps.changed-tests.outputs.tests_all_renamed_old_files }}"
- name: Debug GitHub context
run: |
Expand Down
4 changes: 2 additions & 2 deletions converted-ethereum-tests.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ EOFTests/efValidation/EOF1_section_order_.json
EOFTests/efValidation/EOF1_truncated_section_.json

([#647](https://github.com/ethereum/execution-spec-tests/pull/647))
EOFTests/efValidation/EOF1_returncontract_invalid_.json
EOFTests/efValidation/EOF1_returncontract_valid_.json
EOFTests/efValidation/EOF1_returncontract_invalid_.json
EOFTests/efValidation/EOF1_returncontract_valid_.json

([#440](https://github.com/ethereum/execution-spec-tests/pull/440))
GeneralStateTests/Cancun/stEIP1153-transientStorage/01_tloadBeginningTxn.json
Expand Down
214 changes: 0 additions & 214 deletions tests/cancun/eip1153_tstore/test_tstore_reentrancy.py

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""
touch
EOF Classes example use
"""

Expand Down

0 comments on commit 9f4b969

Please sign in to comment.