We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b036f7d commit 6432872Copy full SHA for 6432872
src/tox/execute/local_sub_process/__init__.py
@@ -85,6 +85,7 @@ def interrupt(self) -> None:
85
self._process.send_signal(SIG_INTERRUPT)
86
if self.wait(self.options.interrupt_timeout) is None: # still alive -> TERM # pragma: no branch
87
terminate_output = self.options.terminate_timeout
88
+ msg = "send signal %s to %d from %d with timeout %.2f"
89
logging.warning(msg, f"SIGTERM({SIGTERM})", to_pid, host_pid, terminate_output)
90
self._process.terminate()
91
# Windows terminate is UNIX kill
0 commit comments