Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1diff --git a/tests/debug/runners.py b/tests/debug/runners.py 2index dc60d0ae..cf4a06a3 100644 3--- a/tests/debug/runners.py 4+++ b/tests/debug/runners.py 5@@ -163,7 +163,7 @@ def _attach_common_config(session, target, cwd): 6 @_runner 7 @contextlib.contextmanager 8 def attach_pid(session, target, cwd=None, wait=True): 9- if wait and not sys.platform.startswith("linux"): 10+ if wait: 11 pytest.skip("https://github.com/microsoft/ptvsd/issues/1926") 12 13 log.info("Attaching {0} to {1} by PID.", session, target) 14diff --git a/tests/debugpy/test_attach.py b/tests/debugpy/test_attach.py 15index afabc1ac..2fff3982 100644 16--- a/tests/debugpy/test_attach.py 17+++ b/tests/debugpy/test_attach.py 18@@ -151,8 +151,7 @@ def test_reattach(pyfile, target, run): 19 20 21 @pytest.mark.parametrize("pid_type", ["int", "str"]) 22-@pytest.mark.skipif( 23- not sys.platform.startswith("linux"), 24+@pytest.mark.skip( 25 reason="https://github.com/microsoft/debugpy/issues/311", 26 ) 27 def test_attach_pid_client(pyfile, target, pid_type):