(res: SelectorResult)
| 619 | |
| 620 | |
| 621 | def _enabled_lane_names(res: SelectorResult) -> list[str]: |
| 622 | order = ("skip", "docs", "fast", "full") |
| 623 | return [name for name in order if getattr(res.lanes, name)] |
| 624 | |
| 625 | |
| 626 | def _lane_label(name: str, emoji: bool = False) -> str: |
no outgoing calls
no test coverage detected