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

partition_identifiers.rb « partitioning_testing « ci « models « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aa091095fb6ab61b4d252db2f8f3f1626cefe3f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Ci
  module PartitioningTesting
    module PartitionIdentifiers
      module_function

      def ci_testing_partition_id
        99999
      end
    end
  end
end