diff --git a/.codecov.yml b/.codecov.yml new file mode 100644 index 00000000..5d4e53f4 --- /dev/null +++ b/.codecov.yml @@ -0,0 +1,3 @@ +ignore: + - "usr/" + - "test/" diff --git a/.travis.yml b/.travis.yml index 6c7b4c0c..8a8e1a04 100644 --- a/.travis.yml +++ b/.travis.yml @@ -235,10 +235,5 @@ after_success: # Generate code coverage report - if [ "${CODE_COVERAGE}" == "True" ]; then - cd build_directory; - lcov --directory . --capture --output-file coverage.info; - lcov --remove coverage.info '/usr/*' --output-file coverage.info; - lcov --remove coverage.info '/test/*' --output-file coverage.info; - lcov --list coverage.info; bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports"; fi