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 68f3eb06a2 GH-51039: [CI][GLib][Ruby] Re-enable Arrow Flight tests for
GLib and Ruby on macOS (#51040)
68f3eb06a2 is described below
commit 68f3eb06a232edf499437cc60805d4006be19c86
Author: Hiroyuki Sato <[email protected]>
AuthorDate: Mon Aug 31 06:35:30 2026 +0900
GH-51039: [CI][GLib][Ruby] Re-enable Arrow Flight tests for GLib and Ruby
on macOS (#51040)
### Rationale for this change
It looks like [this
change](https://github.com/ruby-gnome/ruby-gnome/pull/1743) has fixed issue
#50919.
#50868 disabled Arrow Flight test for GLib on macOS.
### What changes are included in this PR?
Re-enable Arrow Flight tests for GLib and Ruby on macOS.
### Are these changes tested?
Yes.
### Are there any user-facing changes?
No.
* GitHub Issue: #51039
Authored-by: Hiroyuki Sato <[email protected]>
Signed-off-by: Sutou Kouhei <[email protected]>
---
c_glib/test/flight-sql/test-client.rb | 1 -
ruby/red-arrow-flight/test/test-client.rb | 1 -
ruby/red-arrow-flight/test/test-record-batch-reader.rb | 1 -
3 files changed, 3 deletions(-)
diff --git a/c_glib/test/flight-sql/test-client.rb
b/c_glib/test/flight-sql/test-client.rb
index 1ed7f7e6e4..ab80fc2cb8 100644
--- a/c_glib/test/flight-sql/test-client.rb
+++ b/c_glib/test/flight-sql/test-client.rb
@@ -23,7 +23,6 @@ class TestFlightSQLClient < Test::Unit::TestCase
@server = nil
omit("Arrow Flight SQL is required") unless defined?(ArrowFlightSQL)
omit("Unstable on Windows") if Gem.win_platform?
- omit("Unstable on macOS") if /darwin/.match?(RUBY_PLATFORM)
@server = Helper::FlightSQLServer.new
host = "127.0.0.1"
location = ArrowFlight::Location.new("grpc://#{host}:0")
diff --git a/ruby/red-arrow-flight/test/test-client.rb
b/ruby/red-arrow-flight/test/test-client.rb
index 7ec407ec48..9f1ebbff81 100644
--- a/ruby/red-arrow-flight/test/test-client.rb
+++ b/ruby/red-arrow-flight/test/test-client.rb
@@ -19,7 +19,6 @@ class TestClient < Test::Unit::TestCase
def setup
@server = nil
omit("Unstable on Windows") if Gem.win_platform?
- omit("Unstable on x86_64 macOS") if /x86_64-darwin/.match?(RUBY_PLATFORM)
@server = Helper::Server.new
@server.listen("grpc://127.0.0.1:0")
@location = "grpc://127.0.0.1:#{@server.port}"
diff --git a/ruby/red-arrow-flight/test/test-record-batch-reader.rb
b/ruby/red-arrow-flight/test/test-record-batch-reader.rb
index 6ecf2ad921..7f8c64c003 100644
--- a/ruby/red-arrow-flight/test/test-record-batch-reader.rb
+++ b/ruby/red-arrow-flight/test/test-record-batch-reader.rb
@@ -19,7 +19,6 @@ class TestRecordBatchReader < Test::Unit::TestCase
def setup
@server = nil
omit("Unstable on Windows") if Gem.win_platform?
- omit("Unstable on macOS") if /darwin/.match?(RUBY_PLATFORM)
@server = Helper::Server.new
@server.listen("grpc://127.0.0.1:0")
@location = "grpc://127.0.0.1:#{@server.port}"