diff --git a/pkg/gtr/builder.go b/pkg/gtr/builder.go index 6034c2f..27f6f87 100644 --- a/pkg/gtr/builder.go +++ b/pkg/gtr/builder.go @@ -26,17 +26,19 @@ type ReportBuilder struct { coverage float64 // coverage percentage // default values - PackageName string + PackageName string + TimestampFunc func() time.Time } // NewReportBuilder creates a new ReportBuilder. func NewReportBuilder() *ReportBuilder { return &ReportBuilder{ - tests: make(map[int]Test), - benchmarks: make(map[int]Benchmark), - buildErrors: make(map[int]Error), - runErrors: make(map[int]Error), - nextId: 1, + tests: make(map[int]Test), + benchmarks: make(map[int]Benchmark), + buildErrors: make(map[int]Error), + runErrors: make(map[int]Error), + nextId: 1, + TimestampFunc: time.Now, } } @@ -136,6 +138,10 @@ func (b *ReportBuilder) CreatePackage(name, result string, duration time.Duratio Duration: duration, } + if b.TimestampFunc != nil { + pkg.Timestamp = b.TimestampFunc() + } + // Build errors are treated somewhat differently. Rather than having a // single package with all build errors collected so far, we only care // about the build errors for this particular package. diff --git a/pkg/gtr/gtr.go b/pkg/gtr/gtr.go index 2709399..dc0a404 100644 --- a/pkg/gtr/gtr.go +++ b/pkg/gtr/gtr.go @@ -57,6 +57,7 @@ func (r *Report) IsSuccessful() bool { // Package contains build, test and/or benchmark results for a single package. type Package struct { Name string + Timestamp time.Time Duration time.Duration Coverage float64 Output []string