Skip to content

Commit

Permalink
Merge pull request #15 from astrofrog/non-dev-jobs
Browse files Browse the repository at this point in the history
Added jobs with non-developer version
  • Loading branch information
astrofrog authored Apr 5, 2024
2 parents 6e035d7 + 29d5988 commit 60a842f
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 11 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/integration_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,22 @@ jobs:
submodules: false
envs: |
- linux: py311-asdf_astropy
- linux: py311-asdf_astropy-dev
- linux: py311-astropy_healpix
- linux: py311-astropy_healpix-dev
- linux: py311-astroquery
- linux: py311-astroquery-dev
- linux: py311-ccdproc
- linux: py311-ccdproc-dev
- linux: py311-photutils
- linux: py311-photutils-dev
- linux: py311-regions
- linux: py311-regions-dev
- linux: py311-reproject
- linux: py311-reproject-dev
- linux: py311-specreduce
- linux: py311-specreduce-dev
- linux: py311-specutils
- linux: py311-specutils-dev
- linux: py311-sunpy
- linux: py311-sunpy-dev
45 changes: 34 additions & 11 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ envlist =
# These are widely used packages that have historically
# had issues with some astropy releases, so we include them here
# as regression testing.
py{39,310,311,312}-{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}{,-dev}

requires =
setuptools >= 30.3.0
Expand All @@ -24,20 +24,43 @@ pip_pre = true
# side effects and make sure all test suites pass with all packages
deps =
astropy[all,test]
asdf_astropy,all: asdf_astropy[test] @ git+https://github.com/astropy/asdf-astropy.git
astropy_healpix,all: astropy_healpix[test] @ git+https://github.com/astropy/astropy-healpix.git
astroquery,all: astroquery[test,all] @ git+https://github.com/astropy/astroquery.git

asdf_astropy-!dev,all-!dev: asdf_astropy[test]
asdf_astropy-dev,all-dev: asdf_astropy[test] @ git+https://github.com/astropy/asdf-astropy.git

astropy_healpix-!dev,all-!dev: astropy_healpix[test]
astropy_healpix-dev,all-dev: astropy_healpix[test] @ git+https://github.com/astropy/astropy-healpix.git

astroquery-!dev,all-!dev: astroquery[test,all]
astroquery-dev,all-dev: astroquery[test,all] @ git+https://github.com/astropy/astroquery.git

ccdproc,all: psutil
ccdproc,all: ccdproc[test,all] @ git+https://github.com/astropy/ccdproc.git
photutils,all: photutils[test,all] @ git+https://github.com/astropy/photutils.git
regions,all: regions[test,all] @ git+https://github.com/astropy/regions.git
reproject,all: reproject[test,all] @ git+https://github.com/astropy/reproject.git
specreduce,all: specreduce[test] @ git+https://github.com/astropy/specreduce.git
specutils,all: specutils[all,test] @ git+https://github.com/astropy/specutils.git#egg=
sunpy,all: sunpy[tests,all] @ git+https://github.com/sunpy/sunpy.git
ccdproc-!dev,all-!dev: ccdproc[test,all]
ccdproc-dev,all-dev: ccdproc[test,all] @ git+https://github.com/astropy/ccdproc.git

photutils-!dev,all-!dev: photutils[test,all]
photutils-dev,all-dev: photutils[test,all] @ git+https://github.com/astropy/photutils.git

regions-!dev,all-!dev: regions[test,all]
regions-dev,all-dev: regions[test,all] @ git+https://github.com/astropy/regions.git

reproject-!dev,all-!dev: reproject[test,all]
reproject-dev,all-dev: reproject[test,all] @ git+https://github.com/astropy/reproject.git

specreduce-!dev,all-!dev: specreduce[test]
specreduce-dev,all-dev: specreduce[test] @ git+https://github.com/astropy/specreduce.git

specutils-!dev,all-!dev: specutils[all,test]
specutils-dev,all-dev: specutils[all,test] @ git+https://github.com/astropy/specutils.git#egg=

sunpy-!dev,all-!dev: sunpy[tests,all]
sunpy-dev,all-dev: sunpy[tests,all] @ git+https://github.com/sunpy/sunpy.git

skip_install = true

allowlist_externals =
pip

commands =
pip freeze
asdf_astropy,all: pytest --pyargs asdf_astropy
Expand Down

0 comments on commit 60a842f

Please sign in to comment.