diff options
Diffstat (limited to 'tests/test_oddball.py')
-rw-r--r-- | tests/test_oddball.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/test_oddball.py b/tests/test_oddball.py index 60fab48f..f136eb49 100644 --- a/tests/test_oddball.py +++ b/tests/test_oddball.py @@ -306,7 +306,10 @@ class ExceptionTest(CoverageTest): lines = cov.data.line_data() clean_lines = {} for f, llist in lines.items(): - if f == __file__: + # f is a path to a python module, so we drop the '.py' to get + # a callname + callname = os.path.basename(f)[:-3] + if callname not in callnames: # ignore this file. continue clean_lines[os.path.basename(f)] = llist |