Skip to content

Commit

Permalink
Merge pull request #1387 from ashishkeshan/fix-ruby-head-CI-suite
Browse files Browse the repository at this point in the history
Fix `ruby-head` CI suite
  • Loading branch information
Heather Harvey committed Jan 7, 2022
2 parents d729c0d + 25a27b4 commit c03e168
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion spec/helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
require 'webmock/rspec'
require 'base64'
require 'jwt'
require 'pry-byebug'
# latest version of pry-byebug is not compatible with Ruby 3.2.0
if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('3.2.0')
require 'pry-byebug'
end

WebMock.disable_net_connect!()

Expand Down

0 comments on commit c03e168

Please sign in to comment.