Skip to content

Commit

Permalink
Fixed condition to not run twice on linux aarch64 platforms.
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoernrennfanz committed Dec 5, 2024
1 parent 3bb8846 commit f1cae82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f1cae82

Please sign in to comment.