test_util: Implement test for compat_tool_available
(#543)
#254
This file contains hidden or 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
name: Test using Pytest | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
tests: | |
name: "Run PyTest" | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "${{ matrix.python-version }}" | |
cache: "pip" | |
- name: Install dependencies | |
run: | | |
sudo apt install -y libegl1 libxkbcommon0 | |
pip install -r tests/requirements.txt | |
- name: Install ProtonUp-Qt | |
run: pip install -e . | |
- name: Run pytest | |
uses: pavelzw/pytest-action@v2 | |
env: | |
QT_QPA_PLATFORM: "offscreen" | |
with: | |
verbose: true | |
emoji: true | |
job-summary: true | |
custom-arguments: '-q' | |
click-to-expand: true | |
report-title: 'ProtonUp-Qt Test Report' | |
validate_metainfo: | |
name: "Run AppStream Metainfo Validation" | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt install -y appstream-util | |
- name: Validate Metainfo file | |
run: appstream-util validate-relax ./share/metainfo/net.davidotek.pupgui2.appdata.xml |