test/multiverse/suites/sidekiq/Envfile in newrelic_rpm-3.14.1.311 vs test/multiverse/suites/sidekiq/Envfile in newrelic_rpm-3.14.2.312

- old
+ new

@@ -9,9 +9,27 @@ gem 'sidekiq', '~> 3.4.2' gem 'rack' gem 'newrelic_rpm', :require => false, :path => File.expand_path('../../../../') RB + + gemfile <<-RB + gem 'json' + gem 'sidekiq', '~> 4.0.0' + gem 'rack' + gem 'newrelic_rpm', :require => false, :path => File.expand_path('../../../../') + RB +end + +if RUBY_VERSION >= '2.0.0' && RUBY_PLATFORM != 'java' + # We skip testing Sidekiq 3.5.3 on JRuby due to an error in Sidekiq's shutdown: + # https://github.com/mperham/sidekiq/issues/2703 + gemfile <<-RB + gem 'json' + gem 'sidekiq', '~> 3.5.3' + gem 'rack' + gem 'newrelic_rpm', :require => false, :path => File.expand_path('../../../../') + RB end gemfile <<-RB gem 'json' gem 'sidekiq', '~> 2.17.8'