Skip to content

Commit b345804

Browse files
committed
Fix upload coverage data
1 parent e386bc0 commit b345804

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/tests.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,15 @@ jobs:
7777
run: |
7878
hatch run +python=${{ matrix.python }} sessions:run-${{ matrix.session }}
7979
80+
- name: list files
81+
run: pwd && ls -lha
82+
8083
- name: Upload coverage data
8184
if: always() && matrix.session == 'tests' && matrix.os == 'ubuntu-latest'
8285
uses: "actions/upload-artifact@v4"
8386
with:
8487
name: coverage-data-${{ matrix.python }}-${{ matrix.os }}
85-
path: ".coverage.*"
88+
path: ".coverage/*"
8689

8790
- name: Upload documentation
8891
if: matrix.session == 'docs-build'

0 commit comments

Comments
 (0)