fix(codecov)_: ignore folders without tests
Otherwise Codecov reports incorrect numbers when making changes. https://docs.codecov.com/docs/ignoring-paths Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
90a0f9d643
commit
807397faca
|
@ -6,6 +6,13 @@ codecov:
|
|||
notify:
|
||||
wait_for_ci: true
|
||||
|
||||
ignore:
|
||||
- "_.*"
|
||||
- "vendor"
|
||||
- "scripts"
|
||||
- "contracts"
|
||||
- "Makefile"
|
||||
|
||||
coverage:
|
||||
status:
|
||||
project:
|
||||
|
@ -39,7 +46,7 @@ flags:
|
|||
functional-tests:
|
||||
paths:
|
||||
- ".*"
|
||||
carryforward: true
|
||||
carryforward: false
|
||||
|
||||
comment:
|
||||
behavior: default
|
||||
|
|
Loading…
Reference in New Issue