-
Notifications
You must be signed in to change notification settings - Fork 915
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
Return python lists for __getitem__ calls to list type series #8265
Return python lists for __getitem__ calls to list type series #8265
Conversation
python/cudf/cudf/tests/test_list.py
Outdated
def test_list_getitem(data): | ||
list_sr = cudf.Series([data]) | ||
# __getitem__ shall fill None with cudf.NA | ||
assert pa.scalar(data) == list_sr.to_arrow()[0] |
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.
Is this actually testing our __getitem__
code path?
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.
oops :) fixed.
rerun tests |
Codecov Report
@@ Coverage Diff @@
## branch-21.06 #8265 +/- ##
===============================================
Coverage ? 82.84%
===============================================
Files ? 105
Lines ? 17865
Branches ? 0
===============================================
Hits ? 14800
Misses ? 3065
Partials ? 0 Continue to review full report at Codecov.
|
@gpucibot merge |
Make it so that this works: