Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test matrix updates #9

Merged
merged 2 commits into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 10 additions & 11 deletions .github/workflows/integration_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,14 @@ jobs:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
with:
submodules: false
toxdeps: "'tox<4'"
envs: |
- linux: py310-asdf_astropy
- linux: py310-astropy_healpix
- linux: py310-astroquery
- linux: py310-ccdproc
- linux: py310-photutils
- linux: py310-regions
- linux: py310-reproject
- linux: py310-specreduce
- linux: py310-specutils
- linux: py310-sunpy
- linux: py311-asdf_astropy
- linux: py311-astropy_healpix
- linux: py311-astroquery
- linux: py311-ccdproc
- linux: py311-photutils
- linux: py311-regions
- linux: py311-reproject
- linux: py311-specreduce
- linux: py311-specutils
- linux: py311-sunpy
8 changes: 8 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[tool.pytest.ini_options]
astropy_header = true
doctest_plus = "enabled"
text_file_format = "rst"
filterwarnings = [
"ignore:numpy\\.ufunc size changed:RuntimeWarning",
"ignore:numpy\\.ndarray size changed:RuntimeWarning",
]
5 changes: 2 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,16 @@ envlist =
# These are widely used packages that have historically
# had issues with some astropy releases, so we include them here
# as regression testing.
py{38,39,310,311}-{all,asdf_astropy,astropy_healpix,astroquery,ccdproc,photutils,regions,reproject,specreduce,specutils,sunpy}
py{39,310,311,312}-{all,asdf_astropy,astropy_healpix,astroquery,ccdproc,photutils,regions,reproject,specreduce,specutils,sunpy}

requires =
setuptools >= 30.3.0
pip >= 19.3.1
tox < 4
isolated_build = true

[testenv]
# Pass through the following environment variables which are needed for the CI
passenv = HOME CI
passenv = HOME,CI

pip_pre = true

Expand Down