-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcodecov.yml
More file actions
34 lines (31 loc) · 784 Bytes
/
codecov.yml
File metadata and controls
34 lines (31 loc) · 784 Bytes
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
---
coverage:
range: "75..90"
status:
project:
default:
target: auto
threshold: 5%
patch:
default:
target: 80%
threshold: 30%
codecov:
require_ci_to_pass: false
comment:
layout: "reach, diff, files"
behavior: default
require_changes: false
# Codecov occasionally does not post a comment on PRs for some reason; the two lines
# below force Codecov to always post a comment (see
# https://docs.codecov.com/docs/pull-request-comments#requiring-the-base-andor-head-commit)
# (They can be removed if the above stops happening)
require_head: false
require_base: false
ignore:
- "manage.py"
- "src/web/wsgi.py"
- "src/web/asgi.py"
- "src/web/settings.py"
- "src/**/tests/**"
- "src/**/migrations/**"