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

Fixing code coverage #330

Merged
merged 1 commit into from
Dec 18, 2023
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
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/
Loading