(self, summary)
| 901 | return arg_mode |
| 902 | |
| 903 | def print_exec_summary(self, summary): |
| 904 | output = [] |
| 905 | table = self._default_summary_table() |
| 906 | self.imp_client.build_summary_table(summary, output) |
| 907 | formatter = PrettyOutputFormatter(table) |
| 908 | self.output_stream = OutputStream(formatter, filename=self.output_file) |
| 909 | self.output_stream.write(output) |
| 910 | |
| 911 | def _handle_shell_options(self, token, value): |
| 912 | try: |
no test coverage detected