Skip to content

Adds ProcessItems type alias to BaseProcess #17

Adds ProcessItems type alias to BaseProcess

Adds ProcessItems type alias to BaseProcess #17

Workflow file for this run

name: Run Tests
on:
push:
branches: [ ]
pull_request:
branches: [ ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install system dependencies for PySide6
run: |
sudo apt-get update
# Install Qt dependencies based on Qt X11 requirements documentation
# https://doc.qt.io/qt-6/linux-requirements.html
sudo apt-get install -y \
libegl1 \
libfontconfig1 \
libxcb1 \
libx11-6 \
libx11-xcb1 \
libxcb-glx0 \
libxcb-icccm4 \
libxcb-image0 \
libxcb-keysyms1 \
libxcb-randr0 \
libxcb-render0 \
libxcb-render-util0 \
libxcb-shape0 \
libxcb-shm0 \
libxcb-sync1 \
libxcb-util1 \
libxcb-xfixes0 \
libxcb-xkb1 \
libxkbcommon0 \
libxkbcommon-x11-0 \
libdbus-1-3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install .[dev]
- name: Run tests
run: |
pytest flika --cov=flika
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: false