Fixing tests #54
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: CI Tests | |
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: | |
coverage: codecov | |
display: true | |
# Linux PyQt 5.15 and 6.x installations require apt-getting xcb and EGL deps | |
# and headless X11 display; as of Python 3.11 Scipy and h5py also need their own deps. | |
libraries: | | |
apt: | |
- '^libxcb.*-dev' | |
- libxkbcommon-x11-dev | |
- libegl1-mesa | |
- libopenblas-dev | |
- libhdf5-dev | |
brew: | |
- enchant | |
envs: | | |
# Test a few configurations on macOS | |
- macos: py38-test-pyqt514-all | |
- macos: py310-test-pyqt64 | |
# Test some configurations on Windows | |
- windows: py38-test-pyqt514 | |
- windows: py310-test-pyqt63 | |
allowed_failures: | |
needs: initial_checks | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
coverage: codecov | |
display: true | |
libraries: | | |
apt: | |
- '^libxcb.*-dev' | |
- libxkbcommon-x11-dev | |
- libegl1-mesa | |
- libopenblas-dev | |
- libhdf5-dev | |
brew: | |
- enchant | |
- hdf5 | |
envs: | | |
# Non-deterministic QThread exceptions | |
- linux: py38-test-pyside514-skipexitcode | |
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 libgl1-mesa-glx libopenblas-dev libhdf5-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_qt | |
secrets: | |
pypi_token: ${{ secrets.pypi_token }} |