From 49e6012398b914c02fee49da52df535cdc60d256 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0ar=C5=ABnas=20Nejus?= Date: Sat, 15 Jun 2024 09:15:46 +0100 Subject: [PATCH] Try fixing testing workflow --- .github/workflows/ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a16881f82..fb919c183 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -39,18 +39,18 @@ jobs: - name: Install Python dependencies run: poetry install --only=main,test - - if: ${{ ! env.IS_MAIN_PYTHON }} + - if: ${{ env.IS_MAIN_PYTHON != 'true' }} name: Test without coverage run: poe test --no-cov - - if: ${{ env.IS_MAIN_PYTHON }} + - if: ${{ env.IS_MAIN_PYTHON == 'true' }} name: Test with coverage uses: liskin/gh-problem-matcher-wrap@v3 with: linters: pytest run: poe test - - if: ${{ env.IS_MAIN_PYTHON }} + - if: ${{ env.IS_MAIN_PYTHON == 'true' }} name: Upload code coverage continue-on-error: true run: poetry run codecov