From 932b6a98b8b6f8b8e4484f1c8ef95fca7e3cdde4 Mon Sep 17 00:00:00 2001 From: Rasmus Wriedt Larsen Date: Mon, 12 Dec 2022 18:00:32 +0100 Subject: [PATCH] python-setup: Fix path for tests --- python-setup/tests/from_python_exe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-setup/tests/from_python_exe.py b/python-setup/tests/from_python_exe.py index d5bf1624f..79c423c1a 100755 --- a/python-setup/tests/from_python_exe.py +++ b/python-setup/tests/from_python_exe.py @@ -9,7 +9,7 @@ def get_details(path_to_python_exe: str) -> Tuple[str, str]: import_path = subprocess.check_output( [ path_to_python_exe, - os.path.join(os.path.dirname(__file__), "find_site_packages.py") + os.path.join(os.path.dirname(__file__), "..", "find_site_packages.py") ], stdin=subprocess.DEVNULL, )