Skip to content

Revert last changes of pyinstaller-release.yml #33

Revert last changes of pyinstaller-release.yml

Revert last changes of pyinstaller-release.yml #33

Workflow file for this run

on: [push]
jobs:
pytest:
runs-on: ubuntu-latest
name: PyTest Code Testing
env:
DISPLAY: ":99.0"
QT_SELECT: "qt6"
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Install xvfb
run: |
sudo apt install -y xvfb x11-utils libxkbcommon-x11-0 libegl1
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
pip install pytest pytest-cov
python -m pytest ./Tests/ --doctest-modules --cov