Skip to content

Commit 9050661

Browse files
committed
ci: fix coverage upload
At least on my local system, there's no suffix.
1 parent f22f015 commit 9050661

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,17 @@ jobs:
8989
- name: Run Nox
9090
run: |
9191
nox --python=${{ matrix.python }}
92+
93+
- name: (debug) Find coverage
94+
run: find . -iname '*coverage*'
9295

9396
- name: Upload coverage data
9497
if: always() && matrix.session == 'tests'
9598
uses: "actions/upload-artifact@v4"
9699
with:
97100
name: coverage-data
98-
path: ".coverage.*"
101+
path: ".coverage*"
102+
if-no-files-found: error
99103

100104
- name: Upload documentation
101105
if: matrix.session == 'docs-build'

0 commit comments

Comments
 (0)