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

Method generate_report

ci/profile/parse_results.py:72–80  ·  view source on GitHub ↗

Generate markdown report for AI consumption

(self)

Source from the content-addressed store, hash-verified

70 }
71
72 def generate_report(self) -> str:
73 """Generate markdown report for AI consumption"""
74 target = self.results[0].target if self.results else "unknown"
75
76 # Check if this is a comparison test (multiple variants)
77 if len(self.variants) > 1:
78 return self._generate_comparison_report(target)
79 else:
80 return self._generate_single_variant_report(target)
81
82 def _generate_single_variant_report(self, target: str) -> str:
83 """Generate report for single-variant tests"""

Callers 1

mainFunction · 0.95

Tested by

no test coverage detected