From: David Tolnay Date: Sat, 27 Jun 2015 20:48:54 +0000 (-0700) Subject: gcov exclusions X-Git-Tag: jq-1.5rc2~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9985c019751ed848dfa66499b31960ef308fed94;p=jq gcov exclusions --- diff --git a/.travis.yml b/.travis.yml index 565054c..9df9f81 100644 --- a/.travis.yml +++ b/.travis.yml @@ -48,8 +48,11 @@ script: - make check -j4 after_script: - - rm -rf .libs # don't care about coverage for libjq - - if [ -n "$COVERAGE" ]; then coveralls --gcov-options '\-lp'; fi + - | + if [ -n "$COVERAGE" ]; then + rm -rf .libs usr # don't care about coverage for libjq, bison, libonig + coveralls -e lexer.c -e parser.c -e jv_dtoa.c --gcov-options '\-lp' + fi after_failure: - cat test-suite.log