Update import location for astropy v6 #78
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: | |
pull_request: | |
jobs: | |
tests: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
display: true | |
coverage: codecov | |
libraries: | | |
apt: | |
- '^libxcb.*-dev' | |
- libxkbcommon-x11-dev | |
envs: | | |
# Code style | |
- linux: codestyle | |
# Standard tests | |
- linux: py38-test | |
- linux: py39-test | |
- linux: py310-test | |
- linux: py311-test | |
- macos: py38-test | |
- macos: py39-test | |
- macos: py310-test | |
- macos: py311-test | |
- windows: py38-test | |
- windows: py39-test | |
- windows: py310-test | |
- windows: py311-test | |
publish: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/publish_pure_python.yml@v1 | |
with: | |
# setup 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_wwt | |
secrets: | |
pypi_token: ${{ secrets.pypi_token }} |