Skip to content

Commit

Permalink
apacheGH-44297: [Integration][CI] Skip nanoarrow IPC integration test…
Browse files Browse the repository at this point in the history
…s for compressed/dictionary-encoded files (apache#44298)

### Rationale for this change

There are a few remaining failures when testing nanoarrow against itself: apache/arrow-nanoarrow#643 . Our IPC reader doesn't support dictionaries or compression, so we can't run those tests.

### What changes are included in this PR?

Skips were added to the archery code that runs the tests.

### Are these changes tested?

Yes (integration tests run on every commit)

### Are there any user-facing changes?

No!
* GitHub Issue: apache#44297

Authored-by: Dewey Dunnington <dewey@voltrondata.com>
Signed-off-by: Sutou Kouhei <kou@clear-code.com>
  • Loading branch information
paleolimbot authored Oct 4, 2024
1 parent aee3078 commit ac2a93d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions dev/archery/archery/integration/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,12 +193,16 @@ def _gold_tests(self, gold_dir):
skip_testers.add("Rust")
if prefix == '2.0.0-compression':
skip_testers.add("JS")
# https://github.com/apache/arrow-nanoarrow/issues/621
skip_testers.add("nanoarrow")

# See https://github.com/apache/arrow/pull/9822 for how to
# disable specific compression type tests.

if prefix == '4.0.0-shareddict':
skip_testers.add("C#")
# https://github.com/apache/arrow-nanoarrow/issues/622
skip_testers.add("nanoarrow")

quirks = set()
if prefix in {'0.14.1', '0.17.1',
Expand Down

0 comments on commit ac2a93d

Please sign in to comment.