Skip to content

Commit

Permalink
Merge pull request #26005 from Eism/code_coverage_show_fix
Browse files Browse the repository at this point in the history
Code coverage. Various fixes
  • Loading branch information
Eism authored Jan 7, 2025
2 parents fb40c79 + 9278738 commit 496320f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
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

0 comments on commit 496320f

Please sign in to comment.