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:
|
notify:
|
||||||
wait_for_ci: true
|
wait_for_ci: true
|
||||||
|
|
||||||
|
ignore:
|
||||||
|
- "_.*"
|
||||||
|
- "vendor"
|
||||||
|
- "scripts"
|
||||||
|
- "contracts"
|
||||||
|
- "Makefile"
|
||||||
|
|
||||||
coverage:
|
coverage:
|
||||||
status:
|
status:
|
||||||
project:
|
project:
|
||||||
|
@ -39,7 +46,7 @@ flags:
|
||||||
functional-tests:
|
functional-tests:
|
||||||
paths:
|
paths:
|
||||||
- ".*"
|
- ".*"
|
||||||
carryforward: true
|
carryforward: false
|
||||||
|
|
||||||
comment:
|
comment:
|
||||||
behavior: default
|
behavior: default
|
||||||
|
|
Loading…
Reference in New Issue