diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-24 16:55:38 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-11-24 16:55:38 -0500 |
commit | 88f237651eea7a93eef2bc08132298deb8b2b8f6 (patch) | |
tree | 5602150d5db8c7f44df5a6943458469f535c15af | |
parent | 8da6001179ca8cbf46fab21142c19ea27426dc20 (diff) | |
download | python-coveragepy-88f237651eea7a93eef2bc08132298deb8b2b8f6.tar.gz |
Cleaning up.
-rw-r--r-- | .treerc | 1 | ||||
-rw-r--r-- | test/test_html.py | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -6,6 +6,7 @@ ignore = build htmlcov .tox* + .coverage* mock.py *.min.js sample_html sample_html_beta diff --git a/test/test_html.py b/test/test_html.py index 2e84620..9d1b752 100644 --- a/test/test_html.py +++ b/test/test_html.py @@ -304,7 +304,7 @@ class HtmlTest(CoverageTest): os.remove("sub/another.py") missing_file = os.path.join(self.temp_dir, "sub", "another.py") - self.assertRaisesRegexp(NoSource, + self.assertRaisesRegexp(NoSource, "(?i)No source for code: '%s'" % re.escape(missing_file), cov.html_report ) |