Return True if the filename does not refer to a file we want to have reported.
(self, filename)
| 177 | % (self.infile, err)), file=sys.stderr) |
| 178 | |
| 179 | def is_ignored_filename(self, filename): |
| 180 | """Return True if the filename does not refer to a file |
| 181 | we want to have reported. |
| 182 | """ |
| 183 | return filename.startswith('<') and filename.endswith('>') |
| 184 | |
| 185 | def update(self, other): |
| 186 | """Merge in the data from another CoverageResults""" |
no test coverage detected