Skip to content

Commit

Permalink
Correct poetry install flag format in GitHub Actions workflow
Browse files Browse the repository at this point in the history
Previously, the `poetry install` command was using a space instead of an equals sign for the `--with` flag. This commit corrects it by changing `--with testing` to `--with=testing`, ensuring the installation command is properly recognized and executed.
  • Loading branch information
trentonyo committed Sep 23, 2024
1 parent 6bd9598 commit 6761e25
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,8 @@ jobs:
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
installation-arguments: --with=testing
- name: Install dependencies
run: poetry install --no-interaction --with testing
run: poetry install --no-interaction --with=testing
- name: Run PyTest with coverage
env:
GH_TOKEN: ${{ steps.generate-token.outputs.token }}
Expand Down

0 comments on commit 6761e25

Please sign in to comment.