-
-
Notifications
You must be signed in to change notification settings - Fork 542
/
Copy path.codecov.yml
54 lines (47 loc) · 982 Bytes
/
.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
44
45
46
47
48
49
50
51
52
53
54
---
codecov:
notify:
after_n_builds: 21 # Number of test matrix+lint jobs uploading coverage
wait_for_ci: false
require_ci_to_pass: false
token: >- # notsecret # repo-scoped, upload-only, stability in fork PRs
7316089b-55fe-4646-b640-78d84b79d109
comment:
require_changes: true
coverage:
range: 100..100
status:
patch:
default:
target: 100%
pytest:
target: 100%
flags:
- pytest
typing:
flags:
- MyPy
project:
default:
target: 95%
lib:
flags:
- pytest
paths:
- src/
target: 100%
tests:
flags:
- pytest
paths:
- tests/
target: 100%
typing:
flags:
- MyPy
target: 90%
github_checks:
# Annotations are deprecated in Codecov because they are misleading.
# Ref: https://github.com/codecov/codecov-action/issues/1710
annotations: false
...