Result from streaming compilation and optional test execution.
| 37 | |
| 38 | @dataclass |
| 39 | class StreamingResult: |
| 40 | """Result from streaming compilation and optional test execution.""" |
| 41 | |
| 42 | success: bool |
| 43 | num_passed: int = 0 |
| 44 | num_failed: int = 0 |
| 45 | compile_output: str = "" |
| 46 | failed_names: list[str] = field(default_factory=list) |
| 47 | compile_sub_phases: dict[str, float] = field(default_factory=dict) |
| 48 | |
| 49 | |
| 50 | @dataclass |
no outgoing calls
no test coverage detected