(self, examples: list[str])
| 33 | captured["use_fbuild"] = bool(use_fbuild) |
| 34 | |
| 35 | def build(self, examples: list[str]) -> list[Future[SketchResult]]: |
| 36 | future: Future[SketchResult] = Future() |
| 37 | future.set_result( |
| 38 | SketchResult( |
| 39 | success=True, |
| 40 | output="ok", |
| 41 | build_dir=Path("."), |
| 42 | example=examples[0], |
| 43 | ) |
| 44 | ) |
| 45 | return [future] |
| 46 | |
| 47 | def cancel_all(self) -> None: |
| 48 | pass |
nothing calls this directly
no test coverage detected