Skip to content

Commit

Permalink
ci(github): use bash shell for test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vzhd1701 committed Oct 12, 2022
1 parent 4949857 commit 764e181
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,12 @@ jobs:

- name: Install dependencies
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
shell: bash
run: poetry install --no-interaction --no-root

- name: Run tests
run: |
poetry run pytest --cov-report=xml --cov=${{ env.PACKAGE_NAME }} tests/
shell: bash
run: poetry run pytest --cov-report=xml --cov=${{ env.PACKAGE_NAME }} tests/

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
Expand Down

0 comments on commit 764e181

Please sign in to comment.