coverage.py: instead of killing (and leaving temporary files undeleted) just send SIGTERM and wait

debextract
parent bf31355c62
commit 28122a8b5c
Signed by untrusted user: josch
GPG Key ID: F2CBA5C78FBD83E1

@ -219,7 +219,8 @@ def main():
try:
proc.wait()
except KeyboardInterrupt:
proc.kill()
proc.terminate()
proc.wait()
break
print(separator, file=sys.stderr)
if proc.returncode != 0:

Loading…
Cancel
Save