From 8e4732a61898dc4164e5552b4d6deb2e9d36b863 Mon Sep 17 00:00:00 2001 From: Eli Bishop Date: Mon, 11 Nov 2024 19:33:13 -0800 Subject: [PATCH] Update checks.yml --- .github/workflows/checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 0b3c8d553..da44942c2 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -41,13 +41,13 @@ jobs: - name: Run pytest without coverage if: matrix.os != 'ubuntu-latest' - run: task unit + run: poetry run task unit env: TASKIPY: true - name: Run pytest with coverage if: matrix.os == 'ubuntu-latest' - run: task code_coverage + run: poetry run task code_coverage env: TASKIPY: true