Skip to content

Commit a7323f0

Browse files
authored
Test matrix updates (#9)
* Test matrix updates
1 parent 4ad55a4 commit a7323f0

File tree

3 files changed

+20
-14
lines changed

3 files changed

+20
-14
lines changed

.github/workflows/integration_testing.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,14 @@ jobs:
1717
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
1818
with:
1919
submodules: false
20-
toxdeps: "'tox<4'"
2120
envs: |
22-
- linux: py310-asdf_astropy
23-
- linux: py310-astropy_healpix
24-
- linux: py310-astroquery
25-
- linux: py310-ccdproc
26-
- linux: py310-photutils
27-
- linux: py310-regions
28-
- linux: py310-reproject
29-
- linux: py310-specreduce
30-
- linux: py310-specutils
31-
- linux: py310-sunpy
21+
- linux: py311-asdf_astropy
22+
- linux: py311-astropy_healpix
23+
- linux: py311-astroquery
24+
- linux: py311-ccdproc
25+
- linux: py311-photutils
26+
- linux: py311-regions
27+
- linux: py311-reproject
28+
- linux: py311-specreduce
29+
- linux: py311-specutils
30+
- linux: py311-sunpy

pyproject.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[tool.pytest.ini_options]
2+
astropy_header = true
3+
doctest_plus = "enabled"
4+
text_file_format = "rst"
5+
filterwarnings = [
6+
"ignore:numpy\\.ufunc size changed:RuntimeWarning",
7+
"ignore:numpy\\.ndarray size changed:RuntimeWarning",
8+
]

tox.ini

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,16 @@ envlist =
77
# These are widely used packages that have historically
88
# had issues with some astropy releases, so we include them here
99
# as regression testing.
10-
py{38,39,310,311}-{all,asdf_astropy,astropy_healpix,astroquery,ccdproc,photutils,regions,reproject,specreduce,specutils,sunpy}
10+
py{39,310,311,312}-{all,asdf_astropy,astropy_healpix,astroquery,ccdproc,photutils,regions,reproject,specreduce,specutils,sunpy}
1111

1212
requires =
1313
setuptools >= 30.3.0
1414
pip >= 19.3.1
15-
tox < 4
1615
isolated_build = true
1716

1817
[testenv]
1918
# Pass through the following environment variables which are needed for the CI
20-
passenv = HOME CI
19+
passenv = HOME,CI
2120

2221
pip_pre = true
2322

0 commit comments

Comments
 (0)