forked from twisted/twisted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
codecov.yml
43 lines (39 loc) · 1.33 KB
/
codecov.yml
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
35
36
37
38
39
40
41
42
43
#
# For documentation: https://docs.codecov.io/docs/codecovyml-reference
# Twisted settings: https://codecov.io/gh/twisted/twisted/settings/yaml
#
# We want 100% coverage for new patches to make sure we are always increasing
# the coverage.
#
codecov:
require_ci_to_pass: yes
notify:
# We have at least 10 builds in GitHub Actions and 12 in Azure
# and lint + mypy + docs + ReadTheDocs
after_n_builds: 15
wait_for_ci: yes
coverage:
precision: 2
round: down
status:
patch:
default:
# New code should have 100% CI coverage as the minimum
# quality assurance measurement.
# If there is a good reason for new code not to have coverage,
# add inline pragma comments.
target: 100%
project:
default:
# Temporary allow for a bit of slack in overall code coverage due to
# swinging coverage that is not triggered by changes in a PR.
# See: https://twistedmatrix.com/trac/ticket/10170
threshold: 0.02%
# We don't want to receive general PR comments about coverage.
# We have the commit status checks and that should be enough.
# See https://docs.codecov.io/docs/pull-request-comments
comment: false
# See https://docs.codecov.io/docs/github-checks
github_checks:
# We want codecov to send inline PR comments for missing coverage.
annotations: true