Skip to content

Commit

Permalink
Update Poetry install command in CI config
Browse files Browse the repository at this point in the history
Updated the poetry install command in the continuous integration configuration (".github/workflows/ci.yml"). Removed the other flags and just added the "--sync" option for the Poetry install command to enforce a correct and complete installation of dependencies.
  • Loading branch information
meanmail committed May 20, 2024
1 parent f525391 commit 9f8ec79
Showing 1 changed file with 1 addition and 1 deletion.
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 --only main,dev --no-interaction --no-ansi
run: poetry install --no-interaction --no-ansi --sync

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

0 comments on commit 9f8ec79

Please sign in to comment.