(name: str)
| 81 | |
| 82 | |
| 83 | def _final_execution_sort_key(name: str) -> tuple[int, str]: |
| 84 | match = re.match(r"final_execution_(\d+)_", name) |
| 85 | if match: |
| 86 | return (int(match.group(1)), name) |
| 87 | nums = re.findall(r"\d+", name) |
| 88 | return (int(nums[0]) if nums else 0, name) |
| 89 | |
| 90 | |
| 91 | def _run_id_sort_key(name: str) -> tuple[int, str]: |
no outgoing calls
no test coverage detected