You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
def kill(self) -> None:
"""Kills the process via a SIGKILL signal."""
> self.send_signal(signal.SIGKILL)
E AttributeError: module 'signal' has no attribute 'SIGKILL'
..\src\dockerblade\popen.py:124: AttributeError
This means popen is relying an Linux SIGKILL which apparently doesn't exist in Windows.
The text was updated successfully, but these errors were encountered:
ChrisTimperley
changed the title
test_popen fails on Windows
Windows incompatibility: signal module only provides signals that are supported on host machine
Oct 15, 2020
The test
test_popen
fails on windows with:This means
popen
is relying an LinuxSIGKILL
which apparently doesn't exist in Windows.The text was updated successfully, but these errors were encountered: