forked from streamlink/streamlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.codecov.yml
43 lines (43 loc) · 1.24 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
codecov:
notify:
require_ci_to_pass: true
# wait until at all test runners have uploaded a report (see the test job's build matrix)
# otherwise, coverage failures may be shown while some reports are still missing
after_n_builds: 8
comment:
# this also configures the layout of PR check summaries / comments
layout: "reach, diff, flags, files"
# don't ever let the codecov bot comment on PRs
after_n_builds: 999999999
coverage:
range: "50...100"
precision: 2
round: down
status:
changes: false
patch: false
# split up coverage reports by path
# don't set coverage targets and instead set coverage thresholds
project:
# we can't disable the overall default project, because only this will have PR check summaries / comments
# this replaces the PR comment
default:
target: 50
streamlink:
threshold: 1
paths:
- "src/streamlink/"
- "!src/streamlink/plugins/"
streamlink_cli:
threshold: 1
paths:
- "src/streamlink_cli/"
plugins:
# don't set a threshold on plugins
target: 30
paths:
- "src/streamlink/plugins/"
tests:
threshold: 1
paths:
- "tests/"