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

Class BoardCompilationResult

ci/compiler/compilation_orchestrator.py:30–38  ·  view source on GitHub ↗

Aggregated result for compiling a set of examples on a single board.

Source from the content-addressed store, hash-verified

28@typechecked
29@dataclass
30class BoardCompilationResult:
31 """Aggregated result for compiling a set of examples on a single board."""
32
33 ok: bool
34 sketch_results: list[SketchResult]
35 stopped_early: bool = False
36 skipped_examples: list[tuple[str, str]] = field(
37 default_factory=lambda: []
38 ) # List of (example, reason) tuples
39
40
41def compile_board_examples(

Callers 1

compile_board_examplesFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected