Skip to content

Commit 69ab205

Browse files
authored
Fix collecting coverage in CI (#2477)
The upload-artifact action v4.4.0 excluded hidden files from uploads by default. We want to upload only hidden `.coverage*` files though. Enable hidden files again using the `include-hidden-files` input. https://github.com/actions/upload-artifact/releases/tag/v4.4.0
1 parent 907e921 commit 69ab205

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci.yml

+2
Original file line numberDiff line numberDiff line change
@@ -207,11 +207,13 @@ jobs:
207207
with:
208208
name: packages
209209
path: dist/
210+
include-hidden-files: true
210211

211212
- uses: actions/upload-artifact@v4
212213
with:
213214
name: coverage-${{ matrix.python_version }}
214215
path: .coverage*
216+
include-hidden-files: true
215217

216218
windows-test:
217219
runs-on: windows-latest

0 commit comments

Comments
 (0)