(name: str, *, target: str = "", category: str = "", difficulty: str = "")
| 236 | |
| 237 | |
| 238 | def _format_benchmark_row(name: str, *, target: str = "", category: str = "", difficulty: str = "") -> str: |
| 239 | parts = [name] |
| 240 | if category: |
| 241 | parts.append(f"category={category}") |
| 242 | if difficulty: |
| 243 | parts.append(f"difficulty={difficulty}") |
| 244 | if target: |
| 245 | parts.append(f"target={target}") |
| 246 | return " | ".join(parts) |
| 247 | |
| 248 | |
| 249 | def _build_scanner_check_command(executable: str) -> str: |
no outgoing calls
no test coverage detected