Skip to content

Commit

Permalink
Make it so green (#10)
Browse files Browse the repository at this point in the history
* Handle complains from astroquery and cddproc jobs

* Disable sunpy because their deps got too complicated, they should test RC themselves downstream
  • Loading branch information
pllim authored Nov 10, 2023
1 parent a7323f0 commit 9f4c984
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/integration_testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,5 @@ jobs:
- linux: py311-reproject
- linux: py311-specreduce
- linux: py311-specutils
- linux: py311-sunpy
# FIXME: Chained dependencies in sunpy/setup.cfg not working here.
#- linux: py311-sunpy
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ deps =
asdf_astropy,all: git+https://github.com/astropy/asdf-astropy.git#egg=asdf_astropy[test]
astropy_healpix,all: git+https://github.com/astropy/astropy-healpix.git#egg=astropy_healpix[test]
astroquery,all: git+https://github.com/astropy/astroquery.git#egg=astroquery[test,all]
ccdproc,all: psutil
ccdproc,all: git+https://github.com/astropy/ccdproc.git#egg=ccdproc[test,all]
photutils,all: git+https://github.com/astropy/photutils.git#egg=photutils[test,all]
regions,all: git+https://github.com/astropy/regions.git#egg=regions[test,all]
reproject,all: git+https://github.com/astropy/reproject.git#egg=reproject[test,all]
specreduce,all: git+https://github.com/astropy/specreduce.git#egg=specreduce[test]
specutils,all: git+https://github.com/astropy/specutils.git#egg=specutils[all,test]
sunpy,all: SQLAlchemy<2
sunpy,all: git+https://github.com/sunpy/sunpy.git#egg=sunpy[tests,all]

skip_install = true
Expand All @@ -42,7 +42,7 @@ commands =
pip freeze
asdf_astropy,all: pytest --pyargs asdf_astropy
astropy_healpix,all: pytest --pyargs astropy_healpix
astroquery,all: pytest --pyargs astroquery
astroquery,all: pytest --pyargs astroquery -k "not test_deprecated_namespace_import_warning and not test_raises_deprecation_warning"
ccdproc,all: pytest --pyargs ccdproc
photutils,all: pytest --pyargs photutils
regions,all: pytest --pyargs regions
Expand Down

0 comments on commit 9f4c984

Please sign in to comment.