From a2d101405a4c3cc18b72cbbdef3e53d071a02f34 Mon Sep 17 00:00:00 2001 From: Bryce Lampe Date: Thu, 10 May 2018 23:35:16 -0700 Subject: [PATCH] Consume absolute values for aggregation --- metrics.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/metrics.go b/metrics.go index c4f2701..0540eab 100644 --- a/metrics.go +++ b/metrics.go @@ -46,6 +46,8 @@ type Metric struct { LineCoverage float64 `sql:"not null" json:"lineCoverage"` ConditionalCoverage float64 `sql:"not null" json:"conditionalCoverage"` Timestamp int64 `sql:"not null" json:"timestamp"` + LinesCovered int64 `sql:"" json:"linesCovered"` + LinesTested int64 `sql:"" json:"linesTested"` } type errorResponse struct {