Skip to content

Commit

Permalink
chore: Fix coverage files upload by enable hidden files upload (#1186)
Browse files Browse the repository at this point in the history
fix bug introduced by
actions/upload-artifact#602

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

- **New Features**
- Introduced a new parameter to include hidden files in coverage
reports, enhancing the comprehensiveness of the analysis.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
  • Loading branch information
Czaki authored Sep 3, 2024
1 parent 7a66801 commit 7e0063f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/base_test_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,10 @@ jobs:
retention-days: 7

- name: Upload coverage data
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.4.0
if: ${{ inputs.coverage }}
with:
name: cov-reports-${{ inputs.os }}-py-${{ inputs.python_version }}-${{ inputs.napari }}-${{ inputs.qt_backend }}
include-hidden-files: 'true'
path: |
./.coverage.*

0 comments on commit 7e0063f

Please sign in to comment.