From 8714a66a5bfcf5bab6f3304265f9c1b8adb4a15f Mon Sep 17 00:00:00 2001 From: Nikos Tsipinakis Date: Fri, 9 Mar 2018 18:28:46 +0200 Subject: [PATCH] Exclude test directory from code coverage Tests always run almost 100%, and there is no need to test our test suite. --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 20d6590..101fd93 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,7 +31,7 @@ matrix: include: - compiler: gcc after_success: - - coveralls + - coveralls --exclude 'test' - compiler: clang after_success: - - coveralls --gcov llvm-cov --gcov-options gcov + - coveralls --exclude 'test' --gcov llvm-cov --gcov-options gcov