Merged
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #996 +/- ##
==========================================
- Coverage 79.54% 79.24% -0.30%
==========================================
Files 15 15
Lines 1281 1277 -4
Branches 151 154 +3
==========================================
- Hits 1019 1012 -7
- Misses 218 219 +1
- Partials 44 46 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
alexanderankin
approved these changes
Apr 1, 2026
| [[package]] | ||
| name = "testcontainers" | ||
| version = "4.14.1" | ||
| version = "4.14.2" |
Member
There was a problem hiding this comment.
we should update this with release-please
Member
There was a problem hiding this comment.
oh this is unsolved problem. what happens if we ignore it? i guess uv will fail to install.
Contributor
Author
There was a problem hiding this comment.
I think it was somehow missed 🤷
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.
Follow-up to #852, cleaning up the copy file feature after it landed.
(Related to #676)
A few things stood out:
_transfer_file_content_into_containerand_transfer_directory_into_containerdid basically the same thing (build a tar, upload it) but were separate methods with duplicated logicassertwas used for error handling in production code, these silently vanish underpython -O, so real failures would just pass through unnoticedcopy_from_containertreated each HTTP chunk fromget_archive()as its own tar file, works fine for small files that fit in one chunk, breaks silently for anything largerDockerContainerwhen it really has nothing to do with container lifecycle, it's just data transformation on aTransferable