P. L. Lim
P. L. Lim
### Description There are a lot of code that can be removed if we switch from using `urllib` to `requests`. However, it is somewhat controversial because it adds `requests` as...
@WilliamJamieson said we do not need this anymore. Maybe he can clarify. https://github.com/astropy/astropy/blob/098f0cca8249994dcec4f70aadb870165588f67c/pyproject.toml#L199-L200
Move full conftest.py back to package level because otherwise pytest cannot find it if run on installed code but we still need root level for tox pytest header. This is...
@ejeschke , please ping interested parties here. Is this the correct link to Japanese observatories archive? https://www.nao.ac.jp/en/research/project/adc.html Thank you!
According to [astropy-integration-testing run](https://github.com/astropy/astropy-integration-testing/actions/runs/11785052451/job/32825493170), there is failure with stable version but not dev, so this package needs a new release to be compatible with `astropy` v7.0.0 (but *only* if you...
Closes https://github.com/spacetelescope/jwst/issues/9554 This PR removed `pytest_jwst` plugin because it is not really needed. ## Tasks - [ ] If you have a specific reviewer in mind, tag them. - [x]...
This PR to remove `pyargs` from `toxenv` because it is now used in everything. I do not think we need `!pyargs`. Indirect follow-up of #9545 ## Tasks - [ ]...
Resolves [JP-3756](https://jira.stsci.edu/browse/JP-3756) This PR addresses * #8806 Also see * #9521 * https://github.com/spacetelescope/jwst/pull/9524 and is assisted by [poolander](https://github.com/pllim/playpen/blob/master/poolander.py). ## TODO before PR is ready for review - [ ] Move...
This PR addresses some things that triggered me when I looked at the tests: * Do not use `tempfile` because it does not respect `basetemp` option and fills up `/tmp`....
I do not understand why `tmp_cwd` is needed here: https://github.com/spacetelescope/jwst/blob/c25ba98fa2717f836d0d0fa5f33b082968c90389/jwst/conftest.py#L99 or `pushdir` here: https://github.com/spacetelescope/jwst/blob/8944f3e2aa8fad4865ea13d942d1486bb561ebd3/jwst/lib/file_utils.py#L9 when we can use `_jail` that already comes with `ci-watson`: https://github.com/spacetelescope/ci_watson/blob/ed431e2da6dbba9ff914675ab39c5254ca06d692/ci_watson/plugin.py#L72 At a glance, discussions in...