Sha256: d2f532519ac5efd1ae999a079222b70bc613c5cb862f0201145e5e248f784987
Contents?: true
Size: 1.03 KB
Versions: 99
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true module Gitlab module QA module Scenario module Test module Integration class Integrations < Scenario::Template def perform(release, *rspec_args) Component::Gitlab.perform do |gitlab| gitlab.release = QA::Release.new(release) gitlab.network = 'test' gitlab.name = 'gitlab-integrations' gitlab.instance do Component::Specs.perform do |specs| rspec_args << '--' unless rspec_args.include?('--') rspec_args << %w[--tag integrations] specs.suite = 'Test::Instance::All' specs.hostname = "qa-e2e-specs.#{gitlab.network}" specs.release = gitlab.release specs.network = gitlab.network specs.args = [gitlab.address, *rspec_args] end end end end end end end end end end
Version data entries
99 entries across 99 versions & 1 rubygems