diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-05-18 15:09:59 -0700 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-05-18 15:09:59 -0700 |
commit | 6983d5d2bd55244f38c190c35fa8e4d8a94c9800 (patch) | |
tree | 76bec8744fad3979c3df83730ff9cb5e961a80a6 | |
parent | ad654aca5e8b121594929f962f1937a37fe4b6e5 (diff) |
Exclude test & compiler sources from coveralls reported test coverage
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index c1086c1765..3f787787c2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,7 +32,7 @@ script: - if [ ! -z "$USE_GCC" ] ; then export CC=gcc-$USE_GCC ; export CXX=g++-$USE_GCC ; fi - ./tools/run_tests/run_tests.py -l $TEST -t -j 16 -c $CONFIG -s 4.0 after_success: - - if [ "$CONFIG" = "gcov" ] ; then coveralls --exclude third_party --exclude gens -b. --gcov-options '\-p' ; fi + - if [ "$CONFIG" = "gcov" ] ; then coveralls --exclude third_party --exclude gens --exclude tests --exclude src/compiler -b. --gcov-options '\-p' ; fi notifications: email: false webhooks: |