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

Moar fixes maybe #10

Merged
merged 4 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
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