From 4a11730a274712fd175097fd56b6b26995c2b3e0 Mon Sep 17 00:00:00 2001 From: vicpaton Date: Tue, 2 Jul 2024 13:55:02 +0200 Subject: [PATCH] added poetry run --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 1ce097b..107ba5b 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -67,11 +67,11 @@ jobs: - name: Tests and coverage if: ${{ github.event_name == 'push' }} run: | - pytest -v --cov --color=yes --durations=0 + poetry run pytest -v --cov --color=yes --durations=0 - name: Tests if: ${{ github.event_name == 'pull_request' }} run: | - pytest -v --cov --color=yes --durations=0 + poetry run pytest -v --cov --color=yes --durations=0 - name: Upload coverage reports to Codecov if: ${{ github.event_name == 'push' }} env: