(self, path)
| 286 | return name.startswith('.') |
| 287 | |
| 288 | def FindFilesIn(self, path): |
| 289 | result = [] |
| 290 | for (root, dirs, files) in os.walk(path): |
| 291 | for ignored in [x for x in dirs if self.IgnoreDir(x)]: |
| 292 | dirs.remove(ignored) |
| 293 | for file in files: |
| 294 | if not self.IgnoreFile(file) and self.IsRelevant(file): |
| 295 | result.append(join(root, file)) |
| 296 | return result |
| 297 | |
| 298 | |
| 299 | class CacheableSourceFileProcessor(SourceFileProcessor): |
no test coverage detected