Skip to content

Commit

Permalink
ci(coverage): update codecov.yml to make patch coverage informational (
Browse files Browse the repository at this point in the history
…#3274)

I also made a small change to a file to see how this changes
behavior of the coverage bot.
  • Loading branch information
Christopher M. Wolff authored Oct 23, 2020
1 parent a94d161 commit 926a70d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ coverage:
target: auto
threshold: 5
base: auto
informational: true
2 changes: 1 addition & 1 deletion query.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}

0 comments on commit 926a70d

Please sign in to comment.