diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-02 08:36:05 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2012-12-02 08:36:05 -0500 |
commit | 49f25e0e90ef345182323d788498413e7c442287 (patch) | |
tree | 79dedd83c84d0df0ba82e2c1b776963a7f2be57c /test/test_oddball.py | |
parent | 23d7b503e5f9e32bd133d064f2035bbe262eff3f (diff) | |
download | python-coveragepy-49f25e0e90ef345182323d788498413e7c442287.tar.gz |
Use '# pragma: nested' for lines not covered due to nested coverage.
Diffstat (limited to 'test/test_oddball.py')
-rw-r--r-- | test/test_oddball.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_oddball.py b/test/test_oddball.py index 14d56b1..75cd00e 100644 --- a/test/test_oddball.py +++ b/test/test_oddball.py @@ -298,8 +298,8 @@ class ExceptionTest(CoverageTest): cov.start() # Call our list of functions: invoke the first, with the rest as # an argument. - calls[0](calls[1:]) - cov.stop() + calls[0](calls[1:]) # pragma: nested + cov.stop() # pragma: nested # Clean the line data and compare to expected results. # The filenames are absolute, so keep just the base. |