Skip to content

Commit

Permalink
python-setup: Fix path for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
RasmusWL committed Dec 12, 2022
1 parent 89526bb commit 522a636
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python-setup/tests/from_python_exe.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
)
Expand Down

0 comments on commit 522a636

Please sign in to comment.