Fix logic error in _fetch_lsblk_info()
loop (#2196)
#3331
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [ push, pull_request ] | |
name: pytest test validation | |
jobs: | |
pytest: | |
runs-on: ubuntu-latest | |
container: | |
image: archlinux:latest | |
options: --privileged | |
steps: | |
- uses: actions/checkout@v4 | |
- run: pacman --noconfirm -Syu python python-pip qemu gcc | |
- run: python -m pip install --break-system-packages --upgrade pip | |
- run: pip install --break-system-packages pytest | |
- name: Test with pytest | |
run: python -m pytest || exit 0 |