Skip to content

Commit

Permalink
chore(ci): replace --with with --only when installing specific de…
Browse files Browse the repository at this point in the history
…ps (#2063)
  • Loading branch information
nicomiguelino authored Sep 10, 2024
1 parent 8882612 commit 29d4c24
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

- name: Install dependencies
run: |
poetry install --with=dev-host
poetry install --only=dev-host
- name: Analyzing the code with flake8
run: |
Expand Down
2 changes: 1 addition & 1 deletion docs/developer-documentation.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ After installing Poetry, run the following commands:

```bash
# Install the dependencies
$ poetry install --with=dev-host
$ poetry install --only=dev-host
$ poetry run flake8 $(git ls-files '**/*.py')
```

Expand Down

0 comments on commit 29d4c24

Please sign in to comment.