diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8d5643e82dc..185142c259a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: diff --git a/noxfile.py b/noxfile.py index e082cf1b4ee..68061151fa5 100644 --- a/noxfile.py +++ b/noxfile.py @@ -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, )