Skip to content

Commit

Permalink
debug test
Browse files Browse the repository at this point in the history
  • Loading branch information
adriamontoto committed Aug 8, 2024
1 parent 4189938 commit ab50187
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,29 @@ jobs:
ls -la coverage
coverage combine coverage/.coverage_*
- name: Normalize paths
run: |
python -c "
import os
import pathlib
for root, dirs, files in os.walk('coverage'):
for file in files:
if file.endswith('.py'):
path = pathlib.Path(root) / file
normalized_path = path.resolve()
print(f'Normalized path: {normalized_path}')
"
- name: list files
run: |
ls .
ls /home
ls /home/runner
ls /home/runner/work
ls /home/runner/work/developing-tools
ls /home/runner/work/developing-tools/developing-tools
ls /home/runner/work/developing-tools/developing-tools/developing_tools
- name: 📊 Generate coverage report
run: |
coverage report
Expand Down

0 comments on commit ab50187

Please sign in to comment.