Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Code coverage. Various fixes #26005

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
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
9 changes: 5 additions & 4 deletions .github/workflows/check_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ name: 'Check: Unit Tests (utest)'
on:
pull_request:
workflow_dispatch:
code_coverage:
description: 'Enable code coverage'
required: false
default: 'false'
inputs:
code_coverage:
description: 'Enable code coverage'
required: false
default: 'false'
schedule:
- cron: "0 3 * * 4" # Every Thursday night at 03:00 for master branch

Expand Down
2 changes: 1 addition & 1 deletion buildscripts/ci/linux/tools/lcov_badger.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
</svg>"""

def create_svg(percent):
return SVG_TEMPLATE.replace("{{PERCENT}}", str(percent) + '%')
return SVG_TEMPLATE.replace("{{PERCENT}}", str(percent))

def extract_coverage(data):
lines = data.split("\n")
Expand Down