File tree Expand file tree Collapse file tree 1 file changed +7
-8
lines changed
Expand file tree Collapse file tree 1 file changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -391,11 +391,10 @@ jobs:
391391 cache : " pip"
392392 - name : Install dependencies
393393 run : pip install pyyaml mashumaro
394- - name : Run tests in alliander_tests container
395- run : |
396- # TODO remove if-statement after zed/realsense-arm64 is supported
397- if ${{ matrix.runner }} == ubuntu-24.04-arm; then
398- python3 start.py --pytest-no-nvidia --deselect=alliander_tests/src/alliander_tests/tests/test_camera.py
399- else
400- python3 start.py --pytest-no-nvidia
401- fi
394+ # TODO remove difference between ARM and non-ARM when zed/realsense-arm64 is supported:
395+ - name : Run tests in alliander_tests container (ubuntu-24.04)
396+ if : ${{ matrix.runner }} == 'ubuntu-24.04'
397+ run : python3 start.py --pytest-no-nvidia
398+ - name : Run tests in alliander_tests container (ubuntu-24.04)
399+ if : ${{ matrix.runner }} == 'ubuntu-24.04-arm'
400+ run : python3 start.py --pytest-no-nvidia --deselect=alliander_tests/src/alliander_tests/tests/test_camera.py
You can’t perform that action at this time.
0 commit comments