-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathcodecov.yml
More file actions
34 lines (32 loc) · 1.1 KB
/
codecov.yml
File metadata and controls
34 lines (32 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Post a Codecov comment on pull requests. If don't need comment, use comment: false, else use following
comment: false
#comment:
# # Show coverage diff, flags table, and changed files in the PR comment
# layout: "diff, flags, files"
# # Update existing comment if present, otherwise create a new one
# behavior: default
# # Post a comment even when coverage numbers do not change
# require_changes: false
# # Do not require a base report before posting the comment
# require_base: false
# # Require the PR head commit to have a coverage report
# require_head: true
# # Show both project coverage and patch coverage in the PR comment
# hide_project_coverage: false
codecov:
# Do not wait for all CI checks to pass before sending notifications
require_ci_to_pass: false
notify:
wait_for_ci: false
coverage:
status:
project: # PR coverage/project UI
default:
# Compare against the base branch automatically
target: auto
# Allow a small coverage drop tolerance
threshold: 0.02%
# patch: off
patch: # PR coverage/patch UI
default:
target: 60%