You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have tried a few different ways to install poetry:
Here, with pipx:
image: python:3.9This fails with
pipelines:
default:
- step:
caches:
- pip
script:
- python3 -m pip install --user pipx
- python3 -m pipx ensurepath
- pipx install poetry
- poetry install
- poetry run pytest -v tests/* --junitxml=test-reports/report.xml
bash: pipx: command not found
image: python:3.9
pipelines:
default:
- step:
script:
- curl -sSL https://install.python-poetry.org | python3 -
- export PATH="$HOME/.poetry/bin:$PATH"
- poetry install
Hi @Scott Fay,
Can you try the following commands? I was able to install poetry using these commands.
- curl -sSL https://install.python-poetry.org | python3 -
- export PATH="$HOME/.local/bin:$PATH"
- poetry --version
Bitbucket Pipelines builds run in Docker containers with Linux platform, so I used the instructions detailed below for Linux:
Kind regards,
Theodora
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.