We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06204ce commit e3a2083Copy full SHA for e3a2083
.codecov.yml
@@ -10,3 +10,4 @@ coverage:
10
target: auto
11
threshold: 5
12
base: auto
13
+ informational: true
query.go
@@ -79,9 +79,9 @@ func (s Statistics) Add(other Statistics) Statistics {
79
RequeueDuration: s.RequeueDuration + other.RequeueDuration,
80
ExecuteDuration: s.ExecuteDuration + other.ExecuteDuration,
81
Concurrency: s.Concurrency + other.Concurrency,
82
- RuntimeErrors: errs,
83
MaxAllocated: s.MaxAllocated + other.MaxAllocated,
84
TotalAllocated: s.TotalAllocated + other.TotalAllocated,
+ RuntimeErrors: errs,
85
Metadata: md,
86
}
87
0 commit comments