Skip to content

Commit

Permalink
Merge pull request #1101 from larskanis/ci-ractor
Browse files Browse the repository at this point in the history
CI: Exclude Ractor tests on Windows-Ruby-3.3
  • Loading branch information
larskanis committed May 30, 2024
2 parents 3b3056b + 8955e25 commit 17cd509
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 17cd509

Please sign in to comment.