From 63ddd77764600175adc5c246bf510227a18ef3db 2021-11-09 00:39:58 From: Nikita Kniazev Date: 2021-11-09 00:39:58 Subject: [PATCH] Fix codecov.yml syntax It expects `paths` to be a list (though a string had been working previously) but for some reason Codecov will silently ignore mistakes and won't tell you that the file has incorrect syntax. --- diff --git a/codecov.yml b/codecov.yml index 31ab1f1..9a798d0 100644 --- a/codecov.yml +++ b/codecov.yml @@ -5,10 +5,10 @@ coverage: default: false library: target: auto - paths: '!.*/tests/.*' + paths: ['!.*/tests/.*'] tests: target: auto - paths: '.*/tests/.*' + paths: ['.*/tests/.*'] codecov: require_ci_to_pass: false