Disable test_attach_pid_client on Windows and macOS per #311

This commit is contained in:
Pavel Minaev 2020-06-24 08:56:18 -07:00 committed by GitHub
parent e01ad19cf8
commit 9ba20c40af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5,6 +5,7 @@
from __future__ import absolute_import, division, print_function, unicode_literals
import pytest
import sys
from tests import debug
from tests.debug import runners, targets
@ -146,6 +147,10 @@ def test_reattach(pyfile, target, run):
@pytest.mark.parametrize("pid_type", ["int", "str"])
@pytest.mark.skipif(
not sys.platform.startswith("linux"),
reason="https://github.com/microsoft/debugpy/issues/311",
)
def test_attach_pid_client(pyfile, target, pid_type):
@pyfile
def code_to_debug():