()
| 119 | short_help='Enter an interactive shell inside the container' |
| 120 | ) |
| 121 | def shell(): |
| 122 | exit_code = 0 |
| 123 | with friendly_dockerized_errors(click): |
| 124 | shell_command = ShellCommand() |
| 125 | exit_code = shell_command.run() |
| 126 | click.get_current_context().exit(exit_code) |
| 127 | |
| 128 | |
| 129 | @main.command( |
nothing calls this directly
no test coverage detected