mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Disable test_attach_pid_client on Windows and macOS per #311
This commit is contained in:
parent
e01ad19cf8
commit
9ba20c40af
1 changed files with 5 additions and 0 deletions
|
|
@ -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():
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue