Skip to content

Commit

Permalink
MNT: try reproject dev and pywwt#340
Browse files Browse the repository at this point in the history
  • Loading branch information
dhomeier committed Oct 26, 2022
1 parent 273289c commit 01a60a1
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 6 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/ci_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@ on:
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
Expand All @@ -17,15 +27,12 @@ jobs:
- libhdf5-dev
envs: |
# Code style
- linux: codestyle
# Standard tests
- linux: py37-test
- linux: py38-test
- linux: py39-test
- linux: py39-devdeps
- linux: py310-test
- linux: py311-test
- linux: py311-devdeps
- macos: py37-test
- macos: py38-test
Expand All @@ -38,6 +45,7 @@ jobs:
- windows: py310-test
publish:
needs: tests
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
Expand Down
6 changes: 5 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{37,38,39,py310}-test
envlist = py{37,38,39,310}-{test,devdeps}
requires = pip >= 18.0
setuptools >= 30.3.0

Expand All @@ -11,6 +11,10 @@ changedir =
test: .tmp/{envname}
extras =
test: test,qt
deps =
devdeps: git+https://github.com/astropy/astropy
devdeps: git+https://github.com/astropy/reproject
devdeps: git+https://github.com/dhomeier/pywwt@eb1bacf
commands =
test: pip freeze
test: pytest --pyargs glue_wwt --cov glue_wwt {posargs}
Expand Down

0 comments on commit 01a60a1

Please sign in to comment.