Fixed incomplete deletion of all images that have passed tests before upload#30188
Merged
scottshambaugh merged 2 commits intomatplotlib:mainfrom Jun 20, 2025
Merged
Fixed incomplete deletion of all images that have passed tests before upload#30188scottshambaugh merged 2 commits intomatplotlib:mainfrom
scottshambaugh merged 2 commits intomatplotlib:mainfrom
Conversation
scottshambaugh
approved these changes
Jun 20, 2025
Contributor
|
As mentioned in #27882, the real test here is that failed images still get uploaded. Have you checked that in your other PR? |
Contributor
Author
|
Yup. I set the PR to have a single failing image comparison. The uploaded artifact archive was only ~400 kB instead of ~50 MB and had only the three images corresponding to the single failed test (plus the |
tacaswell
approved these changes
Jun 20, 2025
Member
|
The failed 3.13 test looked like something went wrong with compiling + freethreading which I'm very sure is unrelated to this change, but re-started the tests. |
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.
PR summary
This PR fixes a bug with #27882, which intended to delete all images that have passed tests before uploading the artifact. However, due to the specification of
-type fin thefindcall, it inadvertently skips over images where the expected image is a symbolic link rather than an actual file. All of the baseline images in the repository are symbolically linked in the results folder (#10222), so #27882 actually deleted only those images where the expected image was dynamically generated.This PR also extends the cleanup to GIF files (of which there is exactly one test).
I've tested this modification in a different PR, so I know that it successfully reduces the size of the uploaded artifact by ~50 MB. A few images (total of 370 kB) manage to still escape the cleanup, but I think that's small enough to put up with:
empty.epsandempty_eps.pngfromtest_backend_ps.py, which seems to be because the comparison image isempty-expected.pdf(PDF, not EPS), so the cleanup isn't smart enough to clean them uptest_backend_pgf.py, which use a different approach for image comparisonsPR checklist