Remove rspec-retry
This commit is contained in:
parent
44f4a93430
commit
d0890cc8a7
4 changed files with 1 additions and 12 deletions
2
Gemfile
2
Gemfile
|
@ -141,8 +141,6 @@ group :test do
|
||||||
|
|
||||||
# Stub web requests for specs
|
# Stub web requests for specs
|
||||||
gem 'webmock', '~> 3.18'
|
gem 'webmock', '~> 3.18'
|
||||||
|
|
||||||
gem 'rspec-retry', '>= 0.6.2'
|
|
||||||
end
|
end
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
|
|
|
@ -639,8 +639,6 @@ GEM
|
||||||
rspec-expectations (~> 3.13)
|
rspec-expectations (~> 3.13)
|
||||||
rspec-mocks (~> 3.13)
|
rspec-mocks (~> 3.13)
|
||||||
rspec-support (~> 3.13)
|
rspec-support (~> 3.13)
|
||||||
rspec-retry (0.6.2)
|
|
||||||
rspec-core (> 3.3)
|
|
||||||
rspec-sidekiq (4.2.0)
|
rspec-sidekiq (4.2.0)
|
||||||
rspec-core (~> 3.0)
|
rspec-core (~> 3.0)
|
||||||
rspec-expectations (~> 3.0)
|
rspec-expectations (~> 3.0)
|
||||||
|
@ -920,7 +918,6 @@ DEPENDENCIES
|
||||||
rqrcode (~> 2.2)
|
rqrcode (~> 2.2)
|
||||||
rspec-github (~> 2.4)
|
rspec-github (~> 2.4)
|
||||||
rspec-rails (~> 6.0)
|
rspec-rails (~> 6.0)
|
||||||
rspec-retry (>= 0.6.2)
|
|
||||||
rspec-sidekiq (~> 4.0)
|
rspec-sidekiq (~> 4.0)
|
||||||
rubocop
|
rubocop
|
||||||
rubocop-capybara
|
rubocop-capybara
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
require 'rspec/retry'
|
|
||||||
|
|
||||||
unless ENV['DISABLE_SIMPLECOV'] == 'true'
|
unless ENV['DISABLE_SIMPLECOV'] == 'true'
|
||||||
require 'simplecov' # Configuration details loaded from .simplecov
|
require 'simplecov' # Configuration details loaded from .simplecov
|
||||||
end
|
end
|
||||||
|
@ -37,10 +35,6 @@ RSpec.configure do |config|
|
||||||
FileUtils.rm_rf(Dir[Rails.root.join('spec', 'test_files')])
|
FileUtils.rm_rf(Dir[Rails.root.join('spec', 'test_files')])
|
||||||
end
|
end
|
||||||
|
|
||||||
# for RSpec::Retry
|
|
||||||
config.verbose_retry = true
|
|
||||||
config.display_try_failure_messages = true
|
|
||||||
|
|
||||||
# Use the GitHub Annotations formatter for CI
|
# Use the GitHub Annotations formatter for CI
|
||||||
if ENV['GITHUB_ACTIONS'] == 'true' && ENV['GITHUB_RSPEC'] == 'true'
|
if ENV['GITHUB_ACTIONS'] == 'true' && ENV['GITHUB_RSPEC'] == 'true'
|
||||||
require 'rspec/github'
|
require 'rspec/github'
|
||||||
|
|
|
@ -16,7 +16,7 @@ describe PollExpirationNotifyWorker do
|
||||||
end
|
end
|
||||||
|
|
||||||
context 'when poll is not expired' do
|
context 'when poll is not expired' do
|
||||||
it 'requeues job', retry: 10 do
|
it 'requeues job' do
|
||||||
worker.perform(poll.id)
|
worker.perform(poll.id)
|
||||||
expect(described_class.sidekiq_options_hash['lock']).to be :until_executing
|
expect(described_class.sidekiq_options_hash['lock']).to be :until_executing
|
||||||
expect(described_class).to have_enqueued_sidekiq_job(poll.id).at(poll.expires_at + 5.minutes)
|
expect(described_class).to have_enqueued_sidekiq_job(poll.id).at(poll.expires_at + 5.minutes)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue