diff --git a/report.tmpl b/report.tmpl
index 928106d..b679543 100644
--- a/report.tmpl
+++ b/report.tmpl
@@ -5,7 +5,7 @@
- Since {{ .since }}
+ Report
diff --git a/report_test.go b/report_test.go
index 3063e17..7ab64da 100644
--- a/report_test.go
+++ b/report_test.go
@@ -24,6 +24,9 @@ func TestReport(t *testing.T) {
}
p := path.Join(os.TempDir(), "test_report.html")
+ if env := os.Getenv("TEST_REPORT_PATH"); env != "" {
+ p = env
+ }
os.WriteFile(p, w.Bytes(), os.ModePerm)
t.Log(p)
}