Skip to content

Commit

Permalink
Update poetry install command in workflow files
Browse files Browse the repository at this point in the history
The poetry install command in both '.github/workflows/actions/prepare/action.yml' and '.github/workflows/ci.yml' workflow files has been updated. The new command now includes '--no-root' option for better control of the installation process and removed the '--only main,dev' options to ensure all necessary dependencies are installed.
  • Loading branch information
meanmail committed May 20, 2024
1 parent 9f8ec79 commit 048b9cc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions/prepare/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ runs:
cache: 'poetry'

- name: Install dependencies
run: poetry install --only main,dev --no-interaction --no-ansi
run: poetry install --no-interaction --no-ansi --no-root --sync
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
cache: 'poetry'

- name: Install dependencies
run: poetry install --no-interaction --no-ansi --sync
run: poetry install --no-interaction --no-ansi --no-root --sync

- name: Run unittests
run: python tests/testing.py

0 comments on commit 048b9cc

Please sign in to comment.