Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoernrennfanz committed Dec 5, 2024
1 parent 2bcf313 commit 67b34ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -337,10 +337,10 @@ jobs:
- name: Run pypylon unit tests for Python ${{ matrix.python-version }}
if: runner.os == 'Linux' && matrix.architecture == 'arm64'
run: |
docker run --rm --platform linux/arm64 -v $(pwd):/work -w /work arm64v8/python:${{ matrix.python-version }}-slim /bin/bash -c "
docker run --rm --platform linux/arm64 -v $(pwd):/work -w /work arm64v8/python:${{ matrix.python-version }}-slim /bin/sh -c "
python -m pip install --upgrade pip &&
pip install pytest numpy &&
pip install --no-index --find-links pypylon-wheel-source pypylon &&
pip install --no-index --find-links pypylon-wheels pypylon &&
pytest tests/genicam_tests tests/pylon_tests/emulated
"
Expand All @@ -349,13 +349,13 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pytest numpy
pip install --no-index --find-links pypylon-wheel-source pypylon
pip install --no-index --find-links pypylon-wheels pypylon
pytest tests/genicam_tests tests/pylon_tests/emulated
- name: Run pypylon unit tests for Python ${{ matrix.python-version }}
if: runner.os != 'macOS'
run: |
python -m pip install --upgrade pip
pip install pytest numpy
pip install --no-index --find-links pypylon-wheel-source pypylon
pip install --no-index --find-links pypylon-wheels pypylon
pytest tests/genicam_tests tests/pylon_tests/emulated tests/pylondataprocessing_tests

0 comments on commit 67b34ac

Please sign in to comment.