Skip to content

Commit

Permalink
Merge pull request #777 from ruby/make-ci-test-clean
Browse files Browse the repository at this point in the history
Stop printing version mismatch message in CI
  • Loading branch information
soutaro committed Sep 5, 2021
2 parents 04c4782 + 14fd210 commit 162e9a6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin/test_runner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
end

unless IS_LATEST_RUBY
STDERR.puts "⚠️⚠️⚠️⚠️ stdlib test assumes Ruby 3.0 but RUBY_VERSION==#{RUBY_VERSION} ⚠️⚠️⚠️⚠️"
unless ENV["CI"]
STDERR.puts "⚠️⚠️⚠️⚠️ stdlib test assumes Ruby 3.0 but RUBY_VERSION==#{RUBY_VERSION} ⚠️⚠️⚠️⚠️"
end
end

KNOWN_FAILS = %w(dbm).map do |lib|
Expand Down

0 comments on commit 162e9a6

Please sign in to comment.