Skip to content

Commit

Permalink
🔧 chore(.github/workflows/pytest.yml): Update poetry install comman…
Browse files Browse the repository at this point in the history
…ds to use `--with dev` flag.
  • Loading branch information
dotX12 committed Feb 4, 2025
1 parent 08de621 commit aff19f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ jobs:

- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: poetry install --only=dev --no-interaction --no-root
run: poetry install --with dev --no-interaction --no-root
#----------------------------------------------
# install your root project, if required
#----------------------------------------------
- name: Install library
run: poetry install --only=dev --no-interaction
run: poetry install --with dev --no-interaction
#----------------------------------------------
# run test suite
#----------------------------------------------
Expand Down

0 comments on commit aff19f0

Please sign in to comment.