Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows incompatibility: signal module only provides signals that are supported on host machine #80

Open
schmerl opened this issue Oct 15, 2020 · 0 comments
Labels
bug Something isn't working windows

Comments

@schmerl
Copy link

schmerl commented Oct 15, 2020

The test test_popen fails on windows with:

    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.

@ChrisTimperley 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
@ChrisTimperley ChrisTimperley added bug Something isn't working windows labels Oct 15, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working windows
Projects
None yet
Development

No branches or pull requests

2 participants