From a6f141b7173ac8f8e59d92bee71dc609af559d2f Mon Sep 17 00:00:00 2001 From: Brian Rosner Date: Tue, 21 May 2024 08:18:54 -0600 Subject: [PATCH] call pytest correctly --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 78be17e..a90cf24 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: - name: Install dependencies run: poetry install --with=test - name: Run pytest - run: pytest --cov=teufa tests/ + run: poetry run pytest --cov=teufa tests/ env: DATABASE_URL: postgresql://postgres:postgres@localhost:5432/postgres - name: Upload coverage reports to Codecov