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

ARROW-16636: [Rust] Activate several IPC integration tests for rust #13219

Merged
merged 4 commits into from
Jun 11, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 8 additions & 16 deletions dev/archery/archery/integration/datagen.py
Original file line number Diff line number Diff line change
Expand Up @@ -1598,8 +1598,7 @@ def _temp_path():
.skip_category('C#')
.skip_category('JS'), # TODO(ARROW-7900)

generate_decimal128_case()
.skip_category('Rust'),
generate_decimal128_case(),

generate_decimal256_case()
.skip_category('Go') # TODO(ARROW-7948): Decimal + Go
Expand All @@ -1615,22 +1614,19 @@ def _temp_path():

generate_interval_case()
.skip_category('C#')
.skip_category('JS') # TODO(ARROW-5239): Intervals + JS
.skip_category('Rust'),
.skip_category('JS'), # TODO(ARROW-5239): Intervals + JS

generate_month_day_nano_interval_case()
.skip_category('C#')
.skip_category('JS'),

generate_map_case()
.skip_category('C#')
.skip_category('Rust'),
.skip_category('C#'),

generate_non_canonical_map_case()
.skip_category('C#')
.skip_category('Java') # TODO(ARROW-8715)
.skip_category('JS') # TODO(ARROW-8716)
.skip_category('Rust'),
.skip_category('JS'), # TODO(ARROW-8716)

generate_nested_case()
.skip_category('C#'),
Expand All @@ -1641,14 +1637,12 @@ def _temp_path():
generate_nested_large_offsets_case()
.skip_category('C#')
.skip_category('Go')
.skip_category('JS')
.skip_category('Rust'),
.skip_category('JS'),

generate_unions_case()
.skip_category('C#')
.skip_category('Go')
.skip_category('JS')
.skip_category('Rust'),
.skip_category('JS'),

generate_custom_metadata_case()
.skip_category('C#')
Expand All @@ -1670,13 +1664,11 @@ def _temp_path():
generate_nested_dictionary_case()
.skip_category('C#')
.skip_category('Java') # TODO(ARROW-7779)
.skip_category('JS')
.skip_category('Rust'),
.skip_category('JS'),

generate_extension_case()
.skip_category('C#')
.skip_category('JS')
.skip_category('Rust'),
.skip_category('JS'),
]

generated_paths = []
Expand Down