Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
akalex authored Oct 30, 2024
1 parent c6ccaee commit bbed3f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,7 @@ jobs:

- name: Install Dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
run: |
poetry install --no-interaction --no-root
poetry run pip install --upgrade setuptools
run: poetry install --no-interaction --no-root

- name: Install library
run: poetry install --no-interaction
Expand Down Expand Up @@ -177,7 +175,9 @@ jobs:
run: poetry install --no-interaction

- name: Run pytest
run: poetry run pytest tests/
run: |
poetry run pip install --upgrade setuptools
poetry run pytest tests/
- name: Submit coverage report
if: github.ref == 'refs/heads/master'
Expand Down

0 comments on commit bbed3f5

Please sign in to comment.