()
| 860 | # Handle SIGTERM the same way as SIGINT. This ensures that if we're terminated |
| 861 | # by the buildbot worker, we'll make an attempt to clean up our subprocesses. |
| 862 | def install_signal_handler(): |
| 863 | def signal_handler(*args): |
| 864 | os.kill(os.getpid(), signal.SIGINT) |
| 865 | |
| 866 | signal.signal(signal.SIGTERM, signal_handler) |
| 867 | |
| 868 | |
| 869 | def parse_args(): |
no outgoing calls
no test coverage detected
searching dependent graphs…