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 against pre-built binaries of scipy and numpy #7581

Merged
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
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ jobs:
- linux: py311-xdist
- macos: py311-xdist
pytest-results-summary: true
- linux: py311-devdeps-xdist
- linux: py311-xdist-cov
coverage: codecov
pytest-results-summary: true
2 changes: 1 addition & 1 deletion jwst/lib/tests/test_siafdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from jwst.lib import siafdb

pytest.importorskip('pysiaf')
import pysiaf # noqa: 402
import pysiaf # noqa: E402

# Database paths
DATA_PATH = Path(__file__).parent / 'data'
Expand Down
4 changes: 3 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ git+https://github.com/asdf-format/asdf
git+https://github.com/asdf-format/asdf-transform-schemas
git+https://github.com/asdf-format/asdf-coordinates-schemas
git+https://github.com/asdf-format/asdf-wcs-schemas
astropy>=0.0.dev0
git+https://github.com/astropy/astropy
git+https://github.com/astropy/asdf-astropy
git+https://github.com/spacetelescope/crds
git+https://github.com/spacetelescope/gwcs
numpy>=0.0.dev0
git+https://github.com/astropy/photutils
scipy>=0.0.dev0
zacharyburnett marked this conversation as resolved.
Show resolved Hide resolved
git+https://github.com/spacetelescope/stdatamodels
git+https://github.com/spacetelescope/stpipe
git+https://github.com/spacetelescope/stcal
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ pass_env =
PASS_INVALID_VALUES
VALIDATE_ON_ASSIGNMENT
TEST_BIGDATA
setenv =
set_env =
devdeps: PIP_EXTRA_INDEX_URL = https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
sdpdeps,regtests: CRDS_CONTEXT = jwst-edit
extras =
test
Expand All @@ -72,7 +73,7 @@ package =
commands_pre =
oldestdeps: minimum_dependencies jwst --filename requirements-min.txt
oldestdeps: pip install -r requirements-min.txt
devdeps: pip install -r requirements-dev.txt
devdeps: pip install -r requirements-dev.txt -U --upgrade-strategy eager
sdpdeps: pip install -r requirements-sdp.txt
pip freeze
commands =
Expand Down