Author: adiroiban Reviewer: graingert Fixes: ticket:10216
Update the release documentation.
Files | Coverage |
---|---|
src/twisted | 89.52% |
Project Totals (830 files) | 89.52% |
1 |
#
|
2 |
# For documentation: https://docs.codecov.io/docs/codecovyml-reference
|
3 |
# Twisted settings: https://codecov.io/gh/twisted/twisted/settings/yaml
|
4 |
#
|
5 |
# We want 100% coverage for new patches to make sure we are always increasing
|
6 |
# the coverage.
|
7 |
#
|
8 |
codecov: |
9 |
require_ci_to_pass: yes |
10 |
notify: |
11 |
# We have at least 10 builds in GitHub Actions and 12 in Azure
|
12 |
# and lint + mypy + docs + ReadTheDocs
|
13 |
after_n_builds: 15 |
14 |
wait_for_ci: yes |
15 |
|
16 |
coverage: |
17 |
precision: 2 |
18 |
round: down |
19 |
status: |
20 |
patch: |
21 |
default: |
22 |
# New code should have 100% CI coverage as the minimum
|
23 |
# quality assurance measurement.
|
24 |
# If there is a good reason for new code not to have coverage,
|
25 |
# add inline pragma comments.
|
26 |
target: 100% |
27 |
project: |
28 |
default: |
29 |
# Temporary allow for a bit of slack in overall code coverage due to
|
30 |
# swinging coverage that is not triggered by changes in a PR.
|
31 |
# See: https://twistedmatrix.com/trac/ticket/10170
|
32 |
threshold: 0.02% |
33 |
|
34 |
|
35 |
# We don't want to receive general PR comments about coverage.
|
36 |
# We have the commit status checks and that should be enough.
|
37 |
# See https://docs.codecov.io/docs/pull-request-comments
|
38 |
comment: false |
39 |
|
40 |
# See https://docs.codecov.io/docs/github-checks
|
41 |
github_checks: |
42 |
# We want codecov to send inline PR comments for missing coverage.
|
43 |
annotations: true |