From bf348353050196c53fbaa760a63a75e95af591ee Mon Sep 17 00:00:00 2001 From: bel Date: Sat, 13 Apr 2024 14:02:41 -0600 Subject: [PATCH] ew --- report.tmpl | 2 +- report_test.go | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) 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) }