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

Function _create_skipped_timing

ci/util/test_runner.py:812–818  ·  view source on GitHub ↗

Create a ProcessTiming entry for a skipped test

(
    test_name: str, command: str = "", cached_summary: str = ""
)

Source from the content-addressed store, hash-verified

810
811
812def _create_skipped_timing(
813 test_name: str, command: str = "", cached_summary: str = ""
814) -> ProcessTiming:
815 """Create a ProcessTiming entry for a skipped test"""
816 # Include cached summary in the name if available
817 display_name = f"{test_name} ({cached_summary})" if cached_summary else test_name
818 return ProcessTiming(name=display_name, duration=0.0, command=command, skipped=True)
819
820
821def _format_cache_hit_message(

Callers 1

runnerFunction · 0.85

Calls 1

ProcessTimingClass · 0.85

Tested by

no test coverage detected