Skip to content

Commit

Permalink
chore: Update poetry installation command to remove --only docs option
Browse files Browse the repository at this point in the history
  • Loading branch information
shunichironomura committed Jul 7, 2024
1 parent 3491ec9 commit 1e24588
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
poetry-version: ${{ env.POETRY_VERSION }}

- name: Install dependencies
run: poetry install --no-interaction --only docs
run: poetry install --no-interaction

- name: Set up Git
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
poetry-version: ${{ env.POETRY_VERSION }}

- name: Install dependencies
run: poetry install --no-interaction --only docs
run: poetry install --no-interaction

- name: Build docs
run: poetry run --no-interaction mkdocs build
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
poetry-version: ${{ env.POETRY_VERSION }}

- name: Install dependencies
run: poetry install --no-interaction --only dev
run: poetry install --no-interaction

- name: Run pytest
run: poetry run --no-interaction -- coverage run --source=./capsula -m pytest ./tests --import-mode importlib
Expand Down

0 comments on commit 1e24588

Please sign in to comment.