Skip to content

Commit 1d0b4c4

Browse files
committed
config: update virtual environment path in test runner script
1 parent 267a296 commit 1d0b4c4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ __pycache__/
88
*.py[cod]
99

1010
# venv
11+
venv/
1112
bin/
1213
include/
1314
lib/

scripts/prune/tests/run_all_tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ def main():
4444
# Determine which Python to use
4545
# Try virtual environment first, fall back to system Python
4646
parent_dir = os.path.dirname(os.path.dirname(__file__))
47-
venv_python = os.path.join(parent_dir, "bin", "python")
47+
venv_python = os.path.join(parent_dir, "venv", "bin", "python")
4848
if os.path.exists(venv_python):
49-
python_cmd = "./bin/python"
49+
python_cmd = "./venv/bin/python"
5050
print(f"🐍 Using virtual environment Python")
5151
else:
5252
python_cmd = sys.executable

0 commit comments

Comments
 (0)