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

blocking.rb « instance « test « scenario « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26bd71e04e8a42b9df044cfa17ba3bc55ae735ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module QA
  module Scenario
    module Test
      module Instance
        class Blocking < All
          tags :reliable,
            *Specs::Runner::DEFAULT_SKIPPED_TAGS.map { |tag| :"~#{tag}" }
        end
      end
    end
  end
end