(self, server: Server, sources: list[BuildSource])
| 168 | return options |
| 169 | |
| 170 | def run_check(self, server: Server, sources: list[BuildSource]) -> list[str]: |
| 171 | response = server.check(sources, export_types=False, is_tty=False, terminal_width=-1) |
| 172 | out = response["out"] or response["err"] |
| 173 | assert isinstance(out, str) |
| 174 | return out.splitlines() |
| 175 | |
| 176 | def build(self, options: Options, sources: list[BuildSource]) -> list[str]: |
| 177 | try: |
no test coverage detected