Skip to content
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

Construct pylibcudf columns from objects supporting __cuda_array_interface__ #15615

Prev Previous commit
Next Next commit
fix bool test
  • Loading branch information
brandon-b-miller committed Apr 30, 2024
commit 3a50093282661e98c055ecc9fbfd60647575442f
2 changes: 2 additions & 0 deletions python/cudf/cudf/pylibcudf_tests/test_column_from_device.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ def valid_type(request):

@pytest.fixture(scope="module")
def valid_column(valid_type):
if valid_type == pa.bool_():
return pa.array([True, False, True], type=valid_type)
return pa.array([1, 2, 3], type=valid_type)


Expand Down