File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,16 +11,29 @@ echo "Current working directory: $(pwd)"
1111
1212ls -la .
1313
14+ # ########## debug
15+ echo " Which Python:"
16+ which python$PYTHON_VERSION || echo " python$PYTHON_VERSION not found in PATH"
17+
18+ echo " Available interpreters:"
19+ pyenv versions || true
1420
1521echo " Using Python Version $PYTHON_VERSION "
1622poetry config virtualenvs.in-project true
23+ # #############
1724
1825# Only create/use the env and install if .venv does not exist
1926echo " Checking for Poetry virtual environment (.venv)"
2027poetry env list
2128if [ ! -d " .venv" ]; then
2229 echo " Creating virtual environment (.venv) with Poetry"
2330 poetry env use " $PYTHON_VERSION "
31+
32+ # ########## debug
33+ echo " Poetry environment info:"
34+ poetry env info || true
35+ # ##########
36+
2437 poetry install
2538 poetry env list
2639else
You can’t perform that action at this time.
0 commit comments