(
paths: list[str], options: Options, fscache: FileSystemCache
)
| 57 | |
| 58 | |
| 59 | def find_sources( |
| 60 | paths: list[str], options: Options, fscache: FileSystemCache |
| 61 | ) -> list[tuple[str, str | None]]: |
| 62 | paths = [os.path.abspath(p) for p in paths] |
| 63 | return normalise_build_source_list(create_source_list(paths, options, fscache)) |
| 64 | |
| 65 | |
| 66 | class SourceFinderSuite(unittest.TestCase): |
no test coverage detected
searching dependent graphs…