From 4bafe86e7f58a43cfbd02cc5a87785a536fa4b61 Mon Sep 17 00:00:00 2001 From: Stefan Negru Date: Mon, 19 Dec 2022 10:28:59 +0200 Subject: [PATCH] use new way of generating 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 8551a8d64..4b316c1eb 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -22,7 +22,7 @@ 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: Install frontend run: | pushd swift_browser_ui_frontend @@ -31,7 +31,7 @@ jobs: - name: Run unit tests run: | tox -e pytest - coveragepy-lcov --output_file_path lcov.info + coverage lcov -o lcov.info - name: Send coverage to coveralls uses: coverallsapp/github-action@master with: