Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e3a2083

Browse files
author
Christopher Wolff
committedOct 22, 2020
ci(coverage): update codecov.yml to make patch coverage informational
I also made a small change to a file to see how this changes behavior of the coverage bot.
1 parent 06204ce commit e3a2083

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎.codecov.yml

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ coverage:
1010
target: auto
1111
threshold: 5
1212
base: auto
13+
informational: true

‎query.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ func (s Statistics) Add(other Statistics) Statistics {
7979
RequeueDuration: s.RequeueDuration + other.RequeueDuration,
8080
ExecuteDuration: s.ExecuteDuration + other.ExecuteDuration,
8181
Concurrency: s.Concurrency + other.Concurrency,
82-
RuntimeErrors: errs,
8382
MaxAllocated: s.MaxAllocated + other.MaxAllocated,
8483
TotalAllocated: s.TotalAllocated + other.TotalAllocated,
84+
RuntimeErrors: errs,
8585
Metadata: md,
8686
}
8787
}

0 commit comments

Comments
 (0)
Please sign in to comment.