Process all errors and exit with the proper exit code.
()
| 218 | |
| 219 | |
| 220 | def _exit_dts() -> None: |
| 221 | """ |
| 222 | Process all errors and exit with the proper exit code. |
| 223 | """ |
| 224 | result.process() |
| 225 | |
| 226 | if dts_logger: |
| 227 | dts_logger.info("DTS execution has ended.") |
| 228 | sys.exit(result.get_return_code()) |
no test coverage detected