(
fscache: FileSystemCache,
modules: dict[str, str],
changed_modules: list[tuple[str, str]],
followed: bool,
)
| 748 | |
| 749 | |
| 750 | def get_sources( |
| 751 | fscache: FileSystemCache, |
| 752 | modules: dict[str, str], |
| 753 | changed_modules: list[tuple[str, str]], |
| 754 | followed: bool, |
| 755 | ) -> list[BuildSource]: |
| 756 | sources = [] |
| 757 | for id, path in changed_modules: |
| 758 | if fscache.isfile(path): |
| 759 | sources.append(BuildSource(path, id, None, followed=followed)) |
| 760 | return sources |
| 761 | |
| 762 | |
| 763 | def calculate_active_triggers( |
no test coverage detected
searching dependent graphs…