MCPcopy Create free account
hub / github.com/FastLED/FastLED / StreamingResult

Class StreamingResult

ci/meson/streaming.py:39–47  ·  view source on GitHub ↗

Result from streaming compilation and optional test execution.

Source from the content-addressed store, hash-verified

37
38@dataclass
39class 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

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected