diff options
Diffstat (limited to 'coverage/html.py')
-rw-r--r-- | coverage/html.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/coverage/html.py b/coverage/html.py index 15f35a66..95e3aa44 100644 --- a/coverage/html.py +++ b/coverage/html.py @@ -363,7 +363,9 @@ class HtmlReporter: 'totals': self.totals, }) - write_html(os.path.join(self.directory, "index.html"), html) + index_file = os.path.join(self.directory, "index.html") + write_html(index_file, html) + self.coverage._message(f"Wrote HTML report to {index_file}") # Write the latest hashes for next time. self.incr.write() |