From f1cae82e91c8f965d53776f16cdcf39bea91428b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rennfanz=2C=20Bj=C3=B6rn?= Date: Thu, 5 Dec 2024 11:32:40 +0100 Subject: [PATCH] Fixed condition to not run twice on linux aarch64 platforms. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5f267d1..ebe77f6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -363,7 +363,7 @@ jobs: pytest tests/genicam_tests tests/pylon_tests/emulated - name: Run pypylon unit tests for Python ${{ matrix.python-version }} - if: runner.os != 'macOS' + if: runner.os != 'macOS' && runner.os != 'Linux' && matrix.architecture != 'arm64' run: | python -m pip install --upgrade pip pip install pytest numpy