diff options
-rw-r--r-- | coverage/version.py | 2 | ||||
-rw-r--r-- | tests/test_html.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/coverage/version.py b/coverage/version.py index 1a5da0c0..d453c1fd 100644 --- a/coverage/version.py +++ b/coverage/version.py @@ -1,7 +1,7 @@ """The version and URL for coverage.py""" # This file is exec'ed in setup.py, don't import anything! -__version__ = "4.0a2" # see detailed history in CHANGES.txt +__version__ = "4.0a3" # see detailed history in CHANGES.txt __url__ = "http://nedbatchelder.com/code/coverage" if max(__version__).isalpha(): diff --git a/tests/test_html.py b/tests/test_html.py index cc817985..b0cb839e 100644 --- a/tests/test_html.py +++ b/tests/test_html.py @@ -328,6 +328,7 @@ class HtmlTest(CoverageTest): with self.assertRaisesRegex(NoSource, msg): cov.html_report() + class HtmlStaticFileTest(CoverageTest): """Tests of the static file copying for the HTML report.""" |