From 55400c7151b1cead7fb86396a83193641021c4f7 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Mon, 1 Jun 2020 12:01:36 +0200 Subject: [PATCH] Fixed codecov.yml file The file has been validated with the webservice provided by codecov. Before the patch: $ curl --data-binary @.codecov.yml https://codecov.io/validate Path: coverage->status->project->default->threshold .validate(None) raised TypeError('expected string or bytes-like object') After the patch: $ curl --data-binary @.codecov.yml https://codecov.io/validate Valid! { "comment": false, "coverage": { "status": { "patch": false, "changes": false, "project": { "default": { "target": 30.0 } } } } } --- .codecov.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.codecov.yml b/.codecov.yml index 097993e979e..b0b47133cab 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -8,6 +8,5 @@ coverage: project: default: target: 30% - threshold: null patch: off changes: off