Skip to content

Commit

Permalink
Merge branch 'pylibcudf-io-writers' of github.com:lithomas1/cudf into…
Browse files Browse the repository at this point in the history
… pylibcudf-io-writers
  • Loading branch information
lithomas1 committed Jun 27, 2024
2 parents 79c1dfd + f7cd9e6 commit 8fc139f
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions python/cudf/cudf/pylibcudf_tests/common/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,6 @@ def assert_column_eq(
if isinstance(rhs, pa.ChunkedArray):
rhs = rhs.combine_chunks()

print(lhs)
print(rhs)
assert lhs.equals(rhs)


Expand Down Expand Up @@ -219,10 +217,8 @@ def sink_to_str(sink):
NUMERIC_PA_TYPES
+ STRING_PA_TYPES
+ BOOL_PA_TYPES
# exclude nested list/struct cases
# since not all tests work with them yet
+ LIST_PA_TYPES # [:1]
+ DEFAULT_PA_STRUCT_TESTING_TYPES # [:1]
+ LIST_PA_TYPES
+ DEFAULT_PA_STRUCT_TESTING_TYPES
)

ALL_PA_TYPES = DEFAULT_PA_TYPES # + LIST_PA_TYPES[1:] + DEFAULT_PA_STRUCT_TESTING_TYPES[1:]
ALL_PA_TYPES = DEFAULT_PA_TYPES

0 comments on commit 8fc139f

Please sign in to comment.