Skip to content

Remove all modifier from napari dependency (#110) #428

Remove all modifier from napari dependency (#110)

Remove all modifier from napari dependency (#110) #428

Workflow file for this run

name: Run tests and upload coverage
on:
push:
branches:
- main
pull_request:
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
env:
DISPLAY: ':99.0'
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: pyproject.toml
- name: Install system dependencies for gui testing (libxkbcommon-x11-0)
run: |
sudo apt update
sudo apt install -y libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xfixes0 x11-utils libgl1 libegl1 libdbus-1-3
/sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -screen 0 1920x1200x24 -ac +extension GLX
- name: Install dependencies
run: pip install -e .[testing]
- name: Run tests and collect coverage
run: pytest --cov midi_app_controller
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
if: matrix.python-version == '3.12'
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}