diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6556f28..0523876 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 pytest -m 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 \ No newline at end of file + run: poetry run pytest -m integration || [[ $? -eq 5 ]] # allow zero pytest tests if not authed with Google Cloud \ No newline at end of file