-
-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test(python): tighten assert_frame_equal
for LazyFrames (don't collect until after the schema has been checked)
#11331
Merged
ritchie46
merged 6 commits into
pola-rs:main
from
alexander-beedie:improve-assert-lazyframes-equal
Sep 27, 2023
Merged
test(python): tighten assert_frame_equal
for LazyFrames (don't collect until after the schema has been checked)
#11331
ritchie46
merged 6 commits into
pola-rs:main
from
alexander-beedie:improve-assert-lazyframes-equal
Sep 27, 2023
Conversation
This file contains 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
…lect until after the schema has been checked)
alexander-beedie
requested review from
ritchie46 and
stinodego
as code owners
September 26, 2023 13:35
alexander-beedie
changed the title
tests(python): tighten
test(python): tighten Sep 26, 2023
assert_frame_equal
for LazyFrames (don't collect until after the schema has been checked)assert_frame_equal
for LazyFrames (don't collect until after the schema has been checked)
alexander-beedie
force-pushed
the
improve-assert-lazyframes-equal
branch
from
September 26, 2023 13:52
f01145c
to
80a6b52
Compare
stinodego
requested changes
Sep 26, 2023
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice - this will help verify our lazy schemas and will even save some compute in the process by not collecting the lazyframes until it's necessary.
I left some minor comments.
Co-authored-by: Stijn de Gooijer <[email protected]>
Co-authored-by: Stijn de Gooijer <[email protected]>
This is great! This will improve our (semi)static dtype correctness. 👍 |
ritchie46
approved these changes
Sep 27, 2023
romanovacca
pushed a commit
to romanovacca/polars
that referenced
this pull request
Oct 1, 2023
…ect until after the schema has been checked) (pola-rs#11331) Co-authored-by: Stijn de Gooijer <[email protected]>
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.
Ref: #11287 (comment) (for @stinodego ;)
The act of collecting may resolve the schema before it has been checked, potentially hiding some edge-cases. If given two LazyFrames, only collect after schema verification.
(Also: brings the assert error message formatting a little closer to our newer standard).