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
|
# codecov used to be able to find this anywhere, now we have to manually
# tell it where to look
---
comment: false
codecov:
notify:
require_ci_to_pass: false
coverage:
status:
patch:
default:
target: 50%
if_no_uploads: error
if_not_found: success
if_ci_failed: error
project:
default: false
library:
target: 50%
if_no_uploads: error
if_not_found: success
if_ci_failed: error
paths:
- '!lib/.*/tests/.*'
tests:
target: auto
if_no_uploads: error
if_not_found: success
if_ci_failed: error
paths:
- 'lib/.*/tests/.*'
|