(self)
| 47 | |
| 48 | |
| 49 | def is_interrupted(self): |
| 50 | with self.all_processes_mutex: |
| 51 | return self.is_exiting.is_set() |
| 52 | |
| 53 | def interrupt_and_exit(self): |
| 54 | print("Received interrupt (e.g. Ctrl-C), shutting down tests and exiting") |
no outgoing calls
no test coverage detected