Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,7 @@ jobs:
-e ARCHERY_INTEGRATION_WITH_JS=1 \
-e ARCHERY_INTEGRATION_WITH_NANOARROW=1 \
-e ARCHERY_INTEGRATION_WITH_RUST=1 \
-e RUST_BACKTRACE=1 \
conda-integration
- name: Docker Push
if: >-
Expand Down
15 changes: 5 additions & 10 deletions dev/archery/archery/integration/datagen.py
Original file line number Diff line number Diff line change
Expand Up @@ -1936,17 +1936,13 @@ def get_generated_json_files(tempdir=None):
generate_decimal32_case()
.skip_tester('Java')
.skip_tester('JS')
.skip_tester('nanoarrow')
.skip_tester('Ruby')
.skip_tester('Rust')
.skip_tester('Go'),

generate_decimal64_case()
.skip_tester('Java')
.skip_tester('JS')
.skip_tester('nanoarrow')
.skip_tester('Ruby')
.skip_tester('Rust')
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is great

.skip_tester('Go'),

generate_datetime_case(),
Expand Down Expand Up @@ -2003,25 +1999,24 @@ def get_generated_json_files(tempdir=None):
.skip_tester('JS')
# TODO(https://github.com/apache/arrow-nanoarrow/issues/618)
.skip_tester('nanoarrow')
.skip_tester('Ruby')
.skip_tester('Rust'),
.skip_tester('Ruby'),

generate_binary_view_case()
.skip_tester('JS')
# TODO(https://github.com/apache/arrow-nanoarrow/issues/618)
.skip_tester('nanoarrow')
.skip_tester('Ruby')
.skip_tester('Rust'),
.skip_tester('Ruby'),

generate_list_view_case()
.skip_tester('.NET') # Doesn't support large list views
.skip_tester('JS')
# TODO(https://github.com/apache/arrow-nanoarrow/issues/618)
.skip_tester('nanoarrow')
.skip_tester('Ruby')
.skip_tester('Rust'),
.skip_tester('Ruby'),

generate_extension_case()
# Also contains a dictionary column
# TODO(https://github.com/apache/arrow-nanoarrow/issues/622)
.skip_tester('nanoarrow')
# TODO(https://github.com/apache/arrow/issues/38045)
.skip_format(SKIP_FLIGHT, '.NET')
Expand Down