We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bc1076 commit b15e280Copy full SHA for b15e280
1 file changed
.github/workflows/test.yml
@@ -58,8 +58,11 @@ jobs:
58
pip install --user pipx
59
pip install --user setuptools
60
pipx ensurepath
61
- pipx install poetry
+ pipx install poetry || {
62
+ echo "❌ pipx install failed — printing pip log:"
63
cat /opt/pipx/logs/*_pip_errors.log || echo "Log not found"
64
+ exit 1
65
+ }
66
poetry config virtualenvs.in-project true
67
poetry install --with dev
68
poetry self add "poetry-dynamic-versioning[plugin]"
0 commit comments