Skip to content

Commit

Permalink
Remove stb_ds.h from coverage report
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristopherHogan committed Mar 2, 2021
1 parent 8f961f4 commit c06619f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,11 @@ jobs:
mkdir -p ${COVERAGE_DIR}
pushd ${GITHUB_WORKSPACE}/build
lcov -c -d . -o "${COVERAGE_DIR}/tmp.info"
lcov --remove "${COVERAGE_DIR}/tmp.info" "/usr/include/*" "${HOME}/${LOCAL}/*" -o ${COVERAGE_DIR}/lcov.info
lcov --remove "${COVERAGE_DIR}/tmp.info" \
"/usr/include/*" \
"${HOME}/${LOCAL}/*" \
"*/stb_ds.h" \
-o ${COVERAGE_DIR}/lcov.info
- name: Coveralls
uses: coverallsapp/github-action@master
Expand Down

0 comments on commit c06619f

Please sign in to comment.