(filename)
| 240 | |
| 241 | |
| 242 | def find_all_cli_commands(filename): |
| 243 | document, _ = parse_rst(filename) |
| 244 | visitor = CollectCLICommands(document) |
| 245 | document.walk(visitor) |
| 246 | return visitor.cli_commands |
| 247 | |
| 248 | |
| 249 | class CommandValidator: |
no test coverage detected