From f05a22590a4db26b0a374043b5910c3781fab4b6 Mon Sep 17 00:00:00 2001 From: Stefan Negru Date: Mon, 19 Dec 2022 10:17:04 +0200 Subject: [PATCH] use new feature to generate lcov from coverage --- .github/workflows/unit.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index 6df810b..e2cda2f 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -28,11 +28,11 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install tox tox-gh-actions coveragepy-lcov + pip install tox tox-gh-actions coverage - name: Run unit tests for python 3.8 run: | tox -e py38 - coveragepy-lcov --output_file_path lcov.info + coverage lcov -o lcov.info - name: Send coverage to coveralls uses: coverallsapp/github-action@master with: