(
args, # type: Sequence[str]
cwd=None, # type: Optional[str]
)
| 73 | |
| 74 | |
| 75 | def parse_args( |
| 76 | args, # type: Sequence[str] |
| 77 | cwd=None, # type: Optional[str] |
| 78 | ): |
| 79 | # type: (...) -> Namespace |
| 80 | parser = ArgumentParser() |
| 81 | project.register_options(parser, project_help="test", cwd=cwd) |
| 82 | return parser.parse_args(args=args) |
| 83 | |
| 84 | |
| 85 | def parse_groups( |
no test coverage detected