From 926a70d66cdf24d16967904424fa21f761b4bc0f Mon Sep 17 00:00:00 2001 From: "Christopher M. Wolff" Date: Thu, 22 Oct 2020 17:40:47 -0700 Subject: [PATCH] ci(coverage): update codecov.yml to make patch coverage informational (#3274) I also made a small change to a file to see how this changes behavior of the coverage bot. --- .codecov.yml | 1 + query.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.codecov.yml b/.codecov.yml index 607c3b8a1c..0845064155 100644 --- a/.codecov.yml +++ b/.codecov.yml @@ -10,3 +10,4 @@ coverage: target: auto threshold: 5 base: auto + informational: true diff --git a/query.go b/query.go index da3ddfbff8..4c22770972 100644 --- a/query.go +++ b/query.go @@ -79,9 +79,9 @@ func (s Statistics) Add(other Statistics) Statistics { RequeueDuration: s.RequeueDuration + other.RequeueDuration, ExecuteDuration: s.ExecuteDuration + other.ExecuteDuration, Concurrency: s.Concurrency + other.Concurrency, - RuntimeErrors: errs, MaxAllocated: s.MaxAllocated + other.MaxAllocated, TotalAllocated: s.TotalAllocated + other.TotalAllocated, + RuntimeErrors: errs, Metadata: md, } }