Skip to content

Commit 49fa2bd

Browse files
committed
debug
1 parent a2b976c commit 49fa2bd

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

.github/scripts/run_test.sh

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,29 @@ echo "Current working directory: $(pwd)"
1111

1212
ls -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

1521
echo "Using Python Version $PYTHON_VERSION"
1622
poetry config virtualenvs.in-project true
23+
##############
1724

1825
# Only create/use the env and install if .venv does not exist
1926
echo "Checking for Poetry virtual environment (.venv)"
2027
poetry env list
2128
if [ ! -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
2639
else

0 commit comments

Comments
 (0)