summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/debugpy/skip-attach-pid-tests.patch
blob: af3362990dd9c0ba85947e6404b495c303fc2c28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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)