Enable context-aware warnings for the freethreaded CI run#19861
Open
ayshih wants to merge 3 commits into
Open
Conversation
Contributor
|
Thank you for your contribution to Astropy! 🌌 This checklist is meant to remind the package maintainers who will review this pull request of some common things to look for.
|
7fbb614 to
2e8f66c
Compare
2e8f66c to
d0d034f
Compare
… and turned into an error
d0d034f to
a84764f
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR enables context-aware warnings for the free-threaded CI run. #19205 pre-dates Python 3.14.4, which fixed the bad interaction with the Astropy logger. Fixes to tests:
warnings.catch_warnings(record=True)works, so it is now incompatible with the warnings capturing by the logger, so three tests are changed to rely entirely onpytest.warns()instead.SAMPWarningwarning gets caught by atry..exceptand turned into an error (eventuallySAMPProxyError). Previouslypytest.warns()could actually intercept and catch theSAMPWarningbefore it was turned into an error, but that is no longer possible with context-aware warnings. The test is changed to simply check for the eventualSAMPProxyErrorerror instead.Closes #19205