1234567891011121314151617181920212223 |
- codecov:
- notify:
- require_ci_to_pass: yes
- # wait for unit and integration test builds.
- after_n_builds: 2
- strict_yaml_branch: main # only use the latest copy on main branch
- coverage:
- precision: 2
- round: down
- range: "80...100"
- status:
- project:
- default:
- enabled: yes
- target: 85% # This needs to be updated to 90 or higher.
- patch:
- default:
- enabled: yes
- target: 95%
- ignore:
- - "*/**/third_party/**/*" # Ignore all 'third_party' directories and files within those directories recursively.
|