From c075904a27e96947144e6ec3b9b4c59d4414c23d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9rome=20Eertmans?= Date: Tue, 17 Oct 2023 16:58:59 +0200 Subject: [PATCH] fix(ci): wrong logic --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0d117e0..8ecb228 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -67,7 +67,7 @@ jobs: poetry install --with test --all-extras - name: Run pytest - if: matrix.os != 'ubuntu-latest' && matrix.pyversion != '3.11' + if: matrix.os != 'ubuntu-latest' || matrix.pyversion != '3.11' run: poetry run pytest -x -n auto - name: Run pytest and coverage