Skip to content

Commit

Permalink
remove coverage thirdparty library
Browse files Browse the repository at this point in the history
  • Loading branch information
injae committed Jan 1, 2024
1 parent 5006158 commit 5a07289
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/code-cov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,11 @@ jobs:
- name: Prepare Codecov
run: |
apt-get install -y lcov
lcov --directory . --capture --output-file coverage.info --rc lcov_branch_coverage=1 # capture coverage info
lcov --remove coverage.info '/usr/*' --output-file coverage.info --rc lcov_branch_coverage=1 # filter out system
lcov --remove coverage.info '**/tests/*' --output-file coverage.info --rc lcov_branch_coverage=1 # filter out tests
lcov --list coverage.info --rc lcov_branch_coverage=1 # debug info
lcov --directory . --capture --output-file coverage.info --rc lcov_branch_coverage=1
lcov --remove coverage.info '/usr/*' --output-file coverage.info --rc lcov_branch_coverage=1
lcov --remove coverage.info '**/tests/*' --output-file coverage.info --rc lcov_branch_coverage=1
lcov --remove coverage.info '**/.cppm/*' --output-file coverage.info --rc lcov_branch_coverage=1
lcov --list coverage.info --rc lcov_branch_coverage=1
- name: Codecov
uses: codecov/[email protected]
with:
Expand Down

0 comments on commit 5a07289

Please sign in to comment.