Skip to content

Commit

Permalink
Problem: coverage report includes irrelevant files
Browse files Browse the repository at this point in the history
Solution: properly set file filter to only include files in src except tweetnacl
  • Loading branch information
sigiesec committed Sep 4, 2020
1 parent 1d62d7c commit 74543a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builds/coverage/ci_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ fi
pip install --user cpp-coveralls

# Build, check, and install from local source
( cd ../..; ./autogen.sh && ./configure "${CONFIG_OPTS[@]}" && make VERBOSE=1 -j5 check && coveralls --exclude tests --exclude src/tweetnacl.c --exclude src/tweetnacl.h --build-root . --gcov-options '\-lp') || exit 1
( cd ../..; ./autogen.sh && ./configure "${CONFIG_OPTS[@]}" && make VERBOSE=1 -j5 check && coveralls --include src --exclude src/tweetnacl.c --exclude src/tweetnacl.h --build-root . --gcov-options '\-lp') || exit 1

0 comments on commit 74543a9

Please sign in to comment.