diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c204364..50fa949 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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 " @@ -349,7 +349,7 @@ 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 }} @@ -357,5 +357,5 @@ 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 tests/pylondataprocessing_tests