(self)
| 27 | |
| 28 | @property |
| 29 | def cmd_failure_rate(self) -> float: |
| 30 | return self.failed_commands / sum(self.steps) if self.steps else 0.0 |
| 31 | |
| 32 | @property |
| 33 | def rounds_total(self) -> int: |
nothing calls this directly
no outgoing calls
no test coverage detected