Ensure no duplicates
(list_of_lists)
| 199 | return os.path.isfile(p) and os.path.basename(p) == 'DEPS' |
| 200 | |
| 201 | def union(list_of_lists): |
| 202 | """Ensure no duplicates""" |
| 203 | return set(sum(list_of_lists, [])) |
| 204 | |
| 205 | def _CollectImpactedFiles(deps_file): |
| 206 | # TODO(liviurau): Do not walk paths twice. Then we have no duplicates. |
no test coverage detected
searching dependent graphs…