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

Method construct_build_error

ci/meson/test_execution.py:48–57  ·  view source on GitHub ↗

Construct MesonTestResult with error status and duration

(duration: float)

Source from the content-addressed store, hash-verified

46
47 @staticmethod
48 def construct_build_error(duration: float) -> "MesonTestResult":
49 """Construct MesonTestResult with error status and duration"""
50 out = MesonTestResult(
51 success=False,
52 duration=duration,
53 num_tests_run=0,
54 num_tests_passed=0,
55 num_tests_failed=0,
56 )
57 return out
58
59
60def run_meson_test(

Callers 1

run_meson_examplesFunction · 0.80

Calls 1

MesonTestResultClass · 0.85

Tested by

no test coverage detected