Skip to content

Commit

Permalink
fixing code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
gangatp committed Dec 15, 2023
1 parent 71159e7 commit 5cb7ce2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ jobs:
name: codecoverage.zip
path: build/codecoverage.zip
- name: Upload code coverage to codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./build/Test_CPP_Bindings_filtered.info
fail_ci_if_error: false # optional (default = false)
fail_ci_if_error: true # optional (default = false)
verbose: true # optional (default = false)

build-windows-release:
Expand Down
13 changes: 6 additions & 7 deletions Tests/codecoverage/run_codecoverage.sh
Original file line number Diff line number Diff line change
@@ -1,23 +1,22 @@
cd build
lcov --capture --initial --directory . --output-file Test_CPP_Bindings_base.info

lcov --capture --initial --directory . --output-file Test_CPP_Bindings_base.info --ignore-errors gcov,inconsistent
./Test_CPP_Bindings

lcov --directory . --capture --output-file Test_CPP_Bindings_run.info
lcov --add-tracefile Test_CPP_Bindings_base.info --add-tracefile Test_CPP_Bindings_run.info --output-file Test_CPP_Bindings.info
lcov --directory . --capture --output-file Test_CPP_Bindings_run.info --ignore-errors gcov,inconsistent
lcov --add-tracefile Test_CPP_Bindings_base.info --add-tracefile Test_CPP_Bindings_run.info --output-file Test_CPP_Bindings.info --ignore-errors gcov,inconsistent

TARGETDIR=`dirname \`pwd\``

lcov --remove Test_CPP_Bindings.info -o Test_CPP_Bindings_filtered.info "$TARGETDIR/Tests/*" "$TARGETDIR/Source/Libraries/*" "$TARGETDIR/Include/Libraries/*" "/Applications/*" \
lcov --remove Test_CPP_Bindings.info --ignore-errors inconsistent -o Test_CPP_Bindings_filtered.info "$TARGETDIR/Tests/*" "$TARGETDIR/Source/Libraries/*" "$TARGETDIR/Include/Libraries/*" "/Applications/*" \
"$TARGETDIR/Autogenerated/Bindings/C/*" \
"$TARGETDIR/Autogenerated/Bindings/CDynamic/*" \
"$TARGETDIR/Autogenerated/Bindings/CSharp/*" \
"$TARGETDIR/Autogenerated/Bindings/CppDynamic/*" \
"$TARGETDIR/Autogenerated/Bindings/Go/*" \
"$TARGETDIR/Autogenerated/Bindings/NodeJS/*" \
"$TARGETDIR/Autogenerated/Bindings/Python/*"
"$TARGETDIR/Autogenerated/Bindings/Python/*"


genhtml --output-directory ./codecoverage --title "lib3mf Test Coverage" --function-coverage --legend Test_CPP_Bindings_filtered.info
genhtml --output-directory ./codecoverage --title "lib3mf Test Coverage" --function-coverage --legend Test_CPP_Bindings_filtered.info --ignore-errors inconsistent

zip -r codecoverage.zip ./codecoverage/

0 comments on commit 5cb7ce2

Please sign in to comment.