From a73c211af91270fa839b77d3c3ae2bbd4c563586 Mon Sep 17 00:00:00 2001 From: Benjamin Gutzmann Date: Tue, 20 Feb 2024 18:31:54 +0100 Subject: [PATCH] Add missing `poetry run` entry point in tests workflow --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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