Skip to content

Commit

Permalink
Perhaps fix pytest
Browse files Browse the repository at this point in the history
  • Loading branch information
zrezke committed Mar 19, 2024
1 parent 060ad90 commit 15e1d10
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,12 @@ jobs:
${{ matrix.pip }} install depthai_viewer --find-links pre-dist --force-reinstall
- name: Run tests
run: cd rerun_py/tests && echo $PATH ; pytest ; true
run: |
if [ "${{ matrix.platform }}" = 'aarch64' ]; then
cd rerun_py/tests && python3.8 -m pytest
else
cd rerun_py/tests && pytest
fi

- name: Unpack the wheel
shell: bash
Expand Down

0 comments on commit 15e1d10

Please sign in to comment.