Skip to content

Refactor viewer classes to split out Qt from non-Qt part, and define Jupyter viewers #74

Refactor viewer classes to split out Qt from non-Qt part, and define Jupyter viewers

Refactor viewer classes to split out Qt from non-Qt part, and define Jupyter viewers #74

Workflow file for this run

name: CI Workflows
on:
push:
branches:
- main
tags:
- '*'
pull_request:
jobs:
initial_checks:
# Mandatory checks before CI tests
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
with:
coverage: false
envs: |
# Code style
- linux: codestyle
tests:
needs: initial_checks
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
with:
display: true
coverage: codecov
# Linux PyQt 5.15 and 6.x installations require apt-getting xcb and EGL deps
# and headless X11 display
libraries: |
apt:
- '^libxcb.*-dev'
- libxkbcommon-x11-dev
- libegl1-mesa
envs: |
# Tests without Qt
- linux: py38-test
- macos: py39-test
- windows: py310-test
- linux: py311-test
- macos: py311-test-dev
# Tests with Qt
- linux: py38-test-pyqt63
- linux: py39-test-pyside63
- linux: py310-test-pyqt64
- linux: py311-test-dev-pyqt64
- macos: py38-test-pyqt63
- macos: py39-test-pyside63
- macos: py310-test-pyqt64
- macos: py311-test-dev-pyqt64
- windows: py38-test-pyqt63
- windows: py39-test-pyside63
- windows: py310-test-pyqt64
- windows: py311-test-dev-pyqt64
publish:
needs: tests
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1
with:
# Setup PyQt5 deps and headless X server as per pyvista/setup-headless-display-action@v1
libraries: '^libxcb.*-dev libxkbcommon-x11-dev xvfb'
test_extras: 'test,qt'
test_command: Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 & sleep 3; DISPLAY=:99.0 pytest --pyargs glue_vispy_viewers
secrets:
pypi_token: ${{ secrets.pypi_token }}