Function
_add_common_path_args
(parser: argparse.ArgumentParser)
Source from the content-addressed store, hash-verified
| 793 | |
| 794 | |
| 795 | def _add_common_path_args(parser: argparse.ArgumentParser) -> None: |
| 796 | parser.add_argument( |
| 797 | "--swebench-repo", |
| 798 | default=None, |
| 799 | help="Path to SWE-bench-dev/ (default: $SWEBENCH_REPO or sibling of clawcodex).", |
| 800 | ) |
| 801 | parser.add_argument( |
| 802 | "--openclaude-repo", |
| 803 | default=None, |
| 804 | help="Path to openclaude/ (default: $OPENCLAUDE_REPO or sibling of clawcodex).", |
| 805 | ) |
| 806 | |
| 807 | |
| 808 | def _add_dataset_args(parser: argparse.ArgumentParser) -> None: |
Tested by
no test coverage detected