| 203 | |
| 204 | |
| 205 | class BuildResultThunk: |
| 206 | # We pass this around so that we avoid freeing memory, which is slow |
| 207 | def __init__(self, build_result: build.BuildResult | None) -> None: |
| 208 | self._result = build_result |
| 209 | |
| 210 | |
| 211 | def run_build( |
no outgoing calls
no test coverage detected
searching dependent graphs…