diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2021-08-05 10:59:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-05 10:59:39 -0700 |
commit | 4ef91bd9fc954c7182480440e5ce9346073b9270 (patch) | |
tree | 69b04064b176994cb417e7e0ff5c4a6869386b13 /tests/test_plugins.py | |
parent | 602e2106edfe437adf56bced4da2e09eb32ca765 (diff) | |
download | python-coveragepy-git-4ef91bd9fc954c7182480440e5ce9346073b9270.tar.gz |
feat: HTML report now says where the report is. #1195 (#1207)
Diffstat (limited to 'tests/test_plugins.py')
-rw-r--r-- | tests/test_plugins.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_plugins.py b/tests/test_plugins.py index ca0e6dac..18c08507 100644 --- a/tests/test_plugins.py +++ b/tests/test_plugins.py @@ -6,6 +6,7 @@ import inspect import io import os.path +import re from xml.etree import ElementTree import pytest @@ -256,7 +257,7 @@ class PluginTest(CoverageTest): out = self.run_command("coverage run main_file.py") assert out == "MAIN\n" out = self.run_command("coverage html") - assert out == "" + assert re.fullmatch(r"Wrote HTML report to htmlcov[/\\]index.html\n", out) @pytest.mark.skipif(env.C_TRACER, reason="This test is only about PyTracer.") |