Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ci_database_worker_spec.rb « background_migration « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7819bc695a4d1e9ee49eb11434b51cf2755bbff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe BackgroundMigration::CiDatabaseWorker, :clean_gitlab_redis_shared_state,
  feature_category: :database do
  before do
    skip_if_shared_database(:ci)
  end

  it_behaves_like 'it runs background migration jobs', 'ci'
end