This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/main by this push:
new 28a497f533 GH-48752: [Ruby] Skip ChunkedArray test on Windows due to
flakiness (#48779)
28a497f533 is described below
commit 28a497f5334de882df4576bc4cb84104dee55ba4
Author: Hyukjin Kwon <[email protected]>
AuthorDate: Thu Jan 8 16:46:26 2026 +0900
GH-48752: [Ruby] Skip ChunkedArray test on Windows due to flakiness (#48779)
### Rationale for this change
This is quite flaky on Windows, and seems like there is a bug in Ruby. It
takes some time to investigate so skip it for now.
### What changes are included in this PR?
Skip `ChunkedArray` on Windows.
### Are these changes tested?
Will be tested in this PR/CI
### Are there any user-facing changes?
No, test-only.
* GitHub Issue: #48752
Authored-by: Hyukjin Kwon <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
ruby/red-arrow/test/test-ractor.rb | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/ruby/red-arrow/test/test-ractor.rb
b/ruby/red-arrow/test/test-ractor.rb
index 2aef74d01a..efd3cca1d4 100644
--- a/ruby/red-arrow/test/test-ractor.rb
+++ b/ruby/red-arrow/test/test-ractor.rb
@@ -20,6 +20,10 @@ class RactorTest < Test::Unit::TestCase
ractor
test("ChunkedArray") do
+ if Gem.win_platform?
+ omit("Ractor is unstable on Windows: " +
+ "https://github.com/apache/arrow/issues/48752")
+ end
require_ruby(3, 1, 0)
array = Arrow::Array.new([1, 2, 3])
chunked_array = Arrow::ChunkedArray.new([array])