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

Class FailedTest

ci/hooks/check-on-stop.py:43–53  ·  view source on GitHub ↗

A test that failed during the on-stop hook run.

Source from the content-addressed store, hash-verified

41
42@dataclass
43class FailedTest:
44 """A test that failed during the on-stop hook run."""
45
46 name: str
47 category: str # "unit" or "example"
48
49 @property
50 def debug_cmd(self) -> str:
51 if self.category == "example":
52 return f"bash test {self.name} --examples --debug"
53 return f"bash test {self.name} --debug"
54
55
56@dataclass

Callers 1

extract_failed_testsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected