summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2019-06-06 08:18:47 +0000
committerRémy Coutable <remy@rymai.me>2019-06-06 08:18:47 +0000
commit4cd5e955d284ee87e69bcf4f2125a7c303819bdd (patch)
tree2fc602db19f146e186efb5b63902a2daf58f0d89
parent3353761680656147360678b3aaa06b245ef64e95 (diff)
parent765f30b80baaed9ace1b5b07570e65e7a7b7ee35 (diff)
downloadgitlab-ce-4cd5e955d284ee87e69bcf4f2125a7c303819bdd.tar.gz
Merge branch '62760-quarantine-it' into 'master'
Quarantine spec/models/ci/pipeline_schedule_spec.rb Closes #62760 See merge request gitlab-org/gitlab-ce!29257
-rw-r--r--spec/models/ci/pipeline_schedule_spec.rb2
1 files changed, 1 insertions, 1 deletions
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