Skip to content

Commit

Permalink
Add missing poetry run entry point in tests workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gutzbenj committed Feb 20, 2024
1 parent 4b5b532 commit c396fa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
run: poetry install --no-interaction --no-root --with=dev,test

- name: Unit tests
run: poe test unit
run: poetry run poe test unit

- name: Integration tests
if: ${{ ! github.event.pull_request.head.repo.fork }}
run: poe test integration || [[ $? -eq 5 ]] # allow zero pytest tests if not authed with Google Cloud
run: poetry run poe test integration || [[ $? -eq 5 ]] # allow zero pytest tests if not authed with Google Cloud

0 comments on commit c396fa4

Please sign in to comment.