Skip to content

Commit

Permalink
Disable test_attach_pid_client on Windows and macOS per #311
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Minaev authored Jun 24, 2020
1 parent e01ad19 commit 9ba20c4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/debugpy/test_attach.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -146,6 +147,10 @@ def code_to_debug():


@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():
Expand Down

0 comments on commit 9ba20c4

Please sign in to comment.