From 9985c019751ed848dfa66499b31960ef308fed94 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sat, 27 Jun 2015 13:48:54 -0700 Subject: [PATCH] gcov exclusions --- .travis.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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 -- 2.40.0