fix: Fix rendering of alternative representation if there are more components in the alternative representation than in ROI #3397
Workflow file for this run
This file contains 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: napari widgets | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
- main | |
- bugfix/fix_napari_widgets_tests | |
pull_request: | |
branches: | |
- '**' | |
concurrency: | |
group: test-napari-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test-latest-release: | |
name: Test latest release ${{ matrix.qt_backend }} | |
strategy: | |
fail-fast: false | |
matrix: | |
qt_backend: ["PyQt5", "PySide2"] | |
os: ["ubuntu-24.04"] | |
uses: ./.github/workflows/base_test_workflow.yml | |
with: | |
python_version: "3.10" | |
os: ${{ matrix.os }} | |
napari: "napari54" | |
qt_backend: ${{ matrix.qt_backend }} | |
timeout: 10 | |
test-pyqt5: | |
name: PyQt5 ${{ matrix.napari }} | |
strategy: | |
fail-fast: false | |
matrix: | |
napari: ["napari419", "napari54"] | |
qt_backend: ["PyQt5"] | |
include: | |
- napari: "napari54" | |
qt_backend: "PySide2" | |
if: github.event_name == 'push' | |
uses: ./.github/workflows/base_test_workflow.yml | |
with: | |
python_version: "3.9" | |
os: "ubuntu-20.04" | |
napari: ${{ matrix.napari }} | |
qt_backend: ${{ matrix.qt_backend }} | |
timeout: 10 |