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: 496e7830c946df6216f8a2ff64ca980e41af96a7 (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,
  :clean_gitlab_redis_cluster_shared_state, feature_category: :database do
  before do
    skip_if_shared_database(:ci)
  end

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