Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

use new way of generating lcov from coverage #356

Merged
merged 1 commit into from
Dec 19, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 unit_tests
coveragepy-lcov --output_file_path lcov.info
coverage lcov -o lcov.info
- name: Send coverage to coveralls
uses: coverallsapp/github-action@master
with:
Expand Down