Skip to content

Commit

Permalink
CI: Exclude Ractor tests on Windows-Ruby-3.3
Browse files Browse the repository at this point in the history
Ractor#take blocks sometimes infinitely on Ruby-3.3 on MINGW, but this seems unrelated to ffi.
  • Loading branch information
larskanis committed May 30, 2024
1 parent 3b3056b commit 8955e25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spec/ffi/spec_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

RSpec.configure do |c|
c.filter_run_excluding gc_dependent: true unless ENV['FFI_TEST_GC'] == 'true'
c.filter_run_excluding( :ractor ) unless defined?(Ractor) && RUBY_VERSION >= "3.1"
c.filter_run_excluding( :ractor ) unless defined?(Ractor) && RUBY_VERSION >= "3.1" && (RUBY_VERSION !~ /^3.3./ || RUBY_PLATFORM !~ /mingw/)
end

module TestLibrary
Expand Down

0 comments on commit 8955e25

Please sign in to comment.