Skip to content

Commit 9e64f05

Browse files
ritwik-gclaude
andcommitted
Add test result artifact uploads to CI workflow
- Upload coverage.xml and htmlcov/ as artifacts after test runs - Artifacts available for download from GitHub Actions UI - Retained for 30 days for debugging and coverage analysis - Makes HTML coverage reports accessible from CI runs 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 8fc9c88 commit 9e64f05

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,16 @@ jobs:
5959
flags: unittests
6060
name: codecov-umbrella
6161

62+
- name: Upload test results
63+
if: always()
64+
uses: actions/upload-artifact@v4
65+
with:
66+
name: test-results-${{ matrix.os }}-py${{ matrix.python-version }}
67+
path: |
68+
coverage.xml
69+
htmlcov/
70+
retention-days: 30
71+
6272
lint:
6373
runs-on: ubuntu-latest
6474
steps:

0 commit comments

Comments
 (0)