Skip to content

Add gui.add_panel() for floating side-by-side control panels #1190

Add gui.add_panel() for floating side-by-side control panels

Add gui.add_panel() for floating side-by-side control panels #1190

Workflow file for this run

name: pytest
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: pytest-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
# Separate cache per Python version so each matrix job gets full hits.
cache-suffix: ${{ matrix.python-version }}
- name: Test with pytest
run: uv run --extra dev --python ${{ matrix.python-version }} pytest --ignore=tests/e2e