Enabling the pytest runner

This commit is contained in:
Anton Hvornum 2022-05-01 19:32:09 +02:00
parent 8adade206a
commit fa9b4a7225
1 changed files with 3 additions and 2 deletions

View File

@ -8,8 +8,9 @@ jobs:
options: --privileged
steps:
- uses: actions/checkout@v2
- run: pacman --noconfirm -Syu python python-pip qemu gcc
- run: pacman --noconfirm -Syu python python-pip
- run: python -m pip install --upgrade pip
- run: pip install .
- run: pip install pytest
- name: Test with pytest
run: python -m pytest || exit 0
run: python -m pytest