summaryrefslogtreecommitdiff
path: root/tests/test_process.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2021-08-05 10:59:39 -0700
committerGitHub <noreply@github.com>2021-08-05 10:59:39 -0700
commit4ef91bd9fc954c7182480440e5ce9346073b9270 (patch)
tree69b04064b176994cb417e7e0ff5c4a6869386b13 /tests/test_process.py
parent602e2106edfe437adf56bced4da2e09eb32ca765 (diff)
downloadpython-coveragepy-git-4ef91bd9fc954c7182480440e5ce9346073b9270.tar.gz
feat: HTML report now says where the report is. #1195 (#1207)
Diffstat (limited to 'tests/test_process.py')
-rw-r--r--tests/test_process.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_process.py b/tests/test_process.py
index 58915b87..5510efe5 100644
--- a/tests/test_process.py
+++ b/tests/test_process.py
@@ -1298,7 +1298,7 @@ class UnicodeFilePathsTest(CoverageTest):
# The HTML report uses ascii-encoded HTML entities.
out = self.run_command("coverage html")
- assert out == ""
+ assert re.fullmatch(r"Wrote HTML report to htmlcov[/\\]index.html\n", out)
self.assert_exists("htmlcov/h\xe2t_py.html")
with open("htmlcov/index.html") as indexf:
index = indexf.read()
@@ -1331,7 +1331,7 @@ class UnicodeFilePathsTest(CoverageTest):
# The HTML report uses ascii-encoded HTML entities.
out = self.run_command("coverage html")
- assert out == ""
+ assert re.fullmatch(r"Wrote HTML report to htmlcov[/\\]index.html\n", out)
self.assert_exists("htmlcov/d_5786906b6f0ffeb4_accented_py.html")
with open("htmlcov/index.html") as indexf:
index = indexf.read()