Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamtt committed Nov 25, 2023
1 parent 878aff2 commit 6ef5084
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install --with test --all-extras
run: poetry install --all-extras
- name: Run tests
run: poetry run pytest

Expand All @@ -57,7 +57,7 @@ jobs:
- name: Install dependencies
run: |
poetry self add "poetry-dynamic-versioning[plugin]"
poetry install --with test --all-extras
poetry install --all-extras
- name: Test & publish code coverage
uses: paambaati/[email protected]
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
with:
poetry-version: ${{ matrix.poetry-version }}
- name: Install dependencies
run: poetry install --without dev --with test --all-extras
run: poetry install --all-extras
- name: Run tests
run: poetry run pytest

Expand All @@ -58,7 +58,7 @@ jobs:
- name: Install dependencies
run: |
poetry self add "poetry-dynamic-versioning[plugin]"
poetry install --with test --all-extras
poetry install --all-extras
- name: Test & publish code coverage
uses: paambaati/[email protected]
env:
Expand Down

0 comments on commit 6ef5084

Please sign in to comment.