27 lines · yaml
1# Copyright 2019 - 2021 Alexander Grund2# Distributed under the Boost Software License, Version 1.0.3# (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt)4#5# Sample codecov configuration file. Edit as required6 7codecov:8 max_report_age: off9 require_ci_to_pass: yes10 notify:11 # Increase this if you have multiple coverage collection jobs12 after_n_builds: 113 wait_for_ci: yes14 15# Change how pull request comments look16comment:17 layout: "reach,diff,flags,files,footer"18 19# Ignore specific files or folders. Glob patterns are supported.20# See https://docs.codecov.com/docs/ignoring-paths21ignore:22 - extra/**/*23 - reporting/**/*24 - example/**/*25 - include_private/**/*26 - tools/**/*27