about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/debugpy/fix-test-pythonpath.patch
blob: 7cfb1a49ec38377c2ce8d76f21be4a53f17d3c13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/tests/debug/session.py b/tests/debug/session.py
index 7dacc1f9..f303e20a 100644
--- a/tests/debug/session.py
+++ b/tests/debug/session.py
@@ -631,6 +631,7 @@ class Session(object):
         if "PYTHONPATH" in self.config.env:
             # If specified, launcher will use it in lieu of PYTHONPATH it inherited
             # from the adapter when spawning debuggee, so we need to adjust again.
+            self.config.env.prepend_to("PYTHONPATH", os.environ["PYTHONPATH"])
             self.config.env.prepend_to("PYTHONPATH", DEBUGGEE_PYTHONPATH.strpath)
         return self._request_start("launch")