We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aa8a3e commit 66d9daeCopy full SHA for 66d9dae
.github/workflows/ci.yaml
@@ -255,12 +255,13 @@ jobs:
255
- name: Download all coverage artifacts
256
uses: actions/download-artifact@v5
257
with:
258
- pattern: coverage-${{ matrix.plex }}*
+ name: coverage-${{ matrix.plex }}-${{ steps.python.outputs.python-version }}
259
+ path: coverage-${{ matrix.plex }}-${{ steps.python.outputs.python-version }}
260
261
- name: Combine ${{ matrix.plex }} coverage results
262
run: |
263
. venv/bin/activate
- coverage combine .coverage
264
+ coverage combine coverage-${{ matrix.plex }}*/.coverage*
265
coverage report --fail-under=50
266
coverage xml
267
0 commit comments