Fix1322 free up disk space in CI#1332
Merged
ilyes319 merged 9 commits intoACEsuit:developfrom Jan 26, 2026
Merged
Conversation
… fail-fast in unit tests.
on some versions we got "[np.int64(1), np.int64(8)]" instead of "[1, 8]" in the CI
Contributor
|
@stenczelt Thank you! I was wondering also if you could have a look at the pytest group jobs, so we can parallelism more the tests, and make them run faster. @jameskermode mentioned he is using it in matscipy. |
Contributor
stenczelt
added a commit
to stenczelt/mace
that referenced
this pull request
Jan 25, 2026
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.
summary
For #1322: the CI was running out of disc space. We are reclaiming disc space on the runner by deleting some large libraries irrelevant to the project
details
We've fixed a symptom here, not the root cause: some tests are littering a lot of files and not cleaning up after themselves, ca 10GB total.
We are freeing up 30GB space by deleting Java, .NET, Swift, Haskell, Android SDKs, and web browsers, which are not needed for this project's test but are default in the actions image.
Additionally, I've
developbranch as well