Return whether the given filename should be scanned for tests.
(self, filename)
| 264 | self.enabled = True |
| 265 | |
| 266 | def wantFile(self, filename): |
| 267 | """Return whether the given filename should be scanned for tests. |
| 268 | """ |
| 269 | if any(pat in filename for pat in self.exclude_patterns): |
| 270 | return False |
| 271 | return None |
| 272 | |
| 273 | def wantDirectory(self, directory): |
| 274 | """Return whether the given directory should be scanned for tests. |
nothing calls this directly
no outgoing calls
no test coverage detected