diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2016-06-25 14:49:29 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2016-06-25 14:49:29 -0400 |
commit | 83114f0f816488c8c5ddb083ee310f7b881f4b50 (patch) | |
tree | 62a5ae5566b73e65fb1e3c40ee15dbc553f13fad /tests/test_summary.py | |
parent | d05b48b69c2e29e25765cfb70b5ee739d0a9dbe8 (diff) | |
download | python-coveragepy-git-83114f0f816488c8c5ddb083ee310f7b881f4b50.tar.gz |
Mark some impossible-to-cover lines
Diffstat (limited to 'tests/test_summary.py')
-rw-r--r-- | tests/test_summary.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_summary.py b/tests/test_summary.py index de92f454..c94c2ba1 100644 --- a/tests/test_summary.py +++ b/tests/test_summary.py @@ -670,7 +670,7 @@ class TestSummaryReporterConfiguration(CoverageTest): """Get text output from the SummaryReporter.""" cov = Coverage() cov.start() - cov.stop() + cov.stop() # pragma: nested cov.data = coverage_data printer = SummaryReporter(cov, options) destination = StringIO() |