Skip to content

Commit

Permalink
ci: install poetry with pipx in workflow tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fbdtemme committed Sep 13, 2023
1 parent f17923e commit e3ff482
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,11 @@ jobs:
- name: Install dependencies
run: |
pip install poetry tox
python3 -m pip install --user pipx
python3 -m pipx ensurepath
pipx install poetry
pip install tox
poetry self add poetry-plugin-export
poetry export --output dev_requirements.txt --quiet --no-interaction --no-ansi --without-hashes --with dev
pip install -r dev_requirements.txt
pip install -e .
Expand Down

0 comments on commit e3ff482

Please sign in to comment.