-
Notifications
You must be signed in to change notification settings - Fork 27
/
.codecov.yml
42 lines (40 loc) · 1.17 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
codecov:
require_ci_to_pass: false
notify:
after_n_builds: 1
wait_for_ci: false
coverage:
status:
patch: off
project:
default:
# target: 70
threshold: 1%
if_ci_failed: success
docgen:
# target: 70
threshold: 1%
if_ci_failed: success
paths:
- tools/docgen
readline:
# target: 70
threshold: 1%
if_ci_failed: success
paths:
- utils/readline
wasmserver:
# target: 70
threshold: 1%
if_ci_failed: success
paths:
- utils/wasmserver
ignore:
- "vendor" # not my project files
- "builtins/import_build" # these should just be copies of import_src
- "**/*_test.go" # Go test files (you shouldn't test test files)
- "**/*.mx" # these are tested outside of codecov
- "**/*.sh" # these are just for bootstrapping development
- "**/*.test" # files generated for testing
- "utils/docgen" # this is a separate project for bootstrapping development
- "utils/wasmserver" # this is also a separate project for bootstrapping development