From 765f30b80baaed9ace1b5b07570e65e7a7b7ee35 Mon Sep 17 00:00:00 2001 From: Lin Jen-Shin Date: Thu, 6 Jun 2019 08:18:47 +0000 Subject: [PATCH] Quarantine this flaky test See https://gitlab.com/gitlab-org/gitlab-ce/issues/62760 --- spec/models/ci/pipeline_schedule_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/models/ci/pipeline_schedule_spec.rb b/spec/models/ci/pipeline_schedule_spec.rb index 9a6471557ea..227870eb27f 100644 --- a/spec/models/ci/pipeline_schedule_spec.rb +++ b/spec/models/ci/pipeline_schedule_spec.rb @@ -128,7 +128,7 @@ describe Ci::PipelineSchedule do context 'when pipeline schedule runs every minute' do let(:pipeline_schedule) { create(:ci_pipeline_schedule, :every_minute) } - it "updates next_run_at to the sidekiq worker's execution time" do + it "updates next_run_at to the sidekiq worker's execution time", :quarantine do expect(pipeline_schedule.next_run_at).to eq(cron_worker_next_run_at) end end