summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorDavid Tolnay <dtolnay@gmail.com>2015-06-27 13:48:54 -0700
committerDavid Tolnay <dtolnay@gmail.com>2015-06-27 14:48:13 -0700
commit9985c019751ed848dfa66499b31960ef308fed94 (patch)
tree3fc6e76fb4778d2dd4f01d47f7be4671cfee3485 /.travis.yml
parente6371712fff2e899afd312473584bb1223d7cf86 (diff)
gcov exclusions
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 565054cb..9df9f818 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