Unverified Commit 4b9c9241 authored by Cristian Maglie's avatar Cristian Maglie Committed by GitHub

[skip-changelog] Fixed codecov.yml file (#735)

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
<shared.validation.helpers.PercentSchemaField object at 0x7f172d3e5a10>.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
        }
      }
    }
  }
}
parent 4c4a1f55
...@@ -8,6 +8,5 @@ coverage: ...@@ -8,6 +8,5 @@ coverage:
project: project:
default: default:
target: 30% target: 30%
threshold: null
patch: off patch: off
changes: off changes: off
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment