Runs processor on all files under the given path.
(self, path)
| 249 | """ |
| 250 | |
| 251 | def RunOnPath(self, path): |
| 252 | """Runs processor on all files under the given path.""" |
| 253 | |
| 254 | all_files = [] |
| 255 | for file in self.GetPathsToSearch(): |
| 256 | all_files += self.FindFilesIn(join(path, file)) |
| 257 | return self.ProcessFiles(all_files) |
| 258 | |
| 259 | def RunOnFiles(self, files): |
| 260 | """Runs processor only on affected files.""" |
nothing calls this directly
no test coverage detected