ci: use codecov coverage format

This commit is contained in:
David Hewitt 2023-04-12 07:35:16 +01:00
parent f08098f9b9
commit d8f7e6b41b
2 changed files with 3 additions and 3 deletions

View File

@ -312,7 +312,7 @@ jobs:
- uses: codecov/codecov-action@v3
if: steps.should-skip.outputs.skip != 'true'
with:
file: coverage.lcov
file: coverage.json
name: ${{ matrix.os }}
emscripten:

View File

@ -62,9 +62,9 @@ def coverage(session: nox.Session) -> None:
"--package=pyo3-macros",
"--package=pyo3-ffi",
"report",
"--lcov",
"--codecov",
"--output-path",
"coverage.lcov",
"coverage.json",
external=True,
)