Return whether the given directory should be scanned for tests.
(self, directory)
| 271 | return None |
| 272 | |
| 273 | def wantDirectory(self, directory): |
| 274 | """Return whether the given directory should be scanned for tests. |
| 275 | """ |
| 276 | if any(pat in directory for pat in self.exclude_patterns): |
| 277 | return False |
| 278 | return None |
| 279 | |
| 280 | |
| 281 | class StreamCapturer(Thread): |
nothing calls this directly
no outgoing calls
no test coverage detected