From 67b34ac5a204af8e121fd12e67c3ac1300969fa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rennfanz=2C=20Bj=C3=B6rn?= Date: Thu, 5 Dec 2024 07:45:34 +0100 Subject: [PATCH] test --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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