Skip to content

Commit 4409d5d

Browse files
printing error logs
1 parent b0703dc commit 4409d5d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,11 @@ jobs:
5959
pip install --user setuptools
6060
pipx ensurepath
6161
if [[ "${{ matrix.python-version }}" == "3.8" ]]; then
62-
pipx install poetry==1.5.1
62+
pipx install 'poetry==1.5.1' --pip-args='installer<0.7.0' || {
63+
echo "❌ pipx install failed — printing pip log:"
64+
cat /opt/pipx/logs/*_pip_errors.log || echo "Log not found"
65+
exit 1
66+
}
6367
else
6468
pipx install poetry
6569
fi

0 commit comments

Comments
 (0)