(args: argparse.Namespace)
| 271 | |
| 272 | |
| 273 | def handle_benchmark_command(args: argparse.Namespace) -> int: |
| 274 | if args.benchmark_command == "list": |
| 275 | return handle_benchmark_list(args.benchmark_file, verbose=args.verbose) |
| 276 | raise ValueError(f"Unsupported benchmark command: {args.benchmark_command}") |
| 277 | |
| 278 | |
| 279 | def handle_doctor( |
no test coverage detected