diff --git a/tests/debug/runners.py b/tests/debug/runners.py index cac4fbf5..079bb743 100644 --- a/tests/debug/runners.py +++ b/tests/debug/runners.py @@ -163,7 +163,7 @@ def _attach_common_config(session, target, cwd): @_runner @contextlib.contextmanager def attach_pid(session, target, cwd=None, wait=True): - if wait and not sys.platform.startswith("linux"): + if wait: pytest.skip("https://github.com/microsoft/ptvsd/issues/1926") log.info("Attaching {0} to {1} by PID.", session, target) diff --git a/tests/debugpy/test_attach.py b/tests/debugpy/test_attach.py index 78453bfe..458716af 100644 --- a/tests/debugpy/test_attach.py +++ b/tests/debugpy/test_attach.py @@ -153,8 +153,7 @@ def test_reattach(pyfile, target, run): @pytest.mark.parametrize("pid_type", ["int", "str"]) -@pytest.mark.skipif( - not sys.platform.startswith("linux"), +@pytest.mark.skip( reason="https://github.com/microsoft/debugpy/issues/311", ) @pytest.mark.flaky(retries=2, delay=1)