Sha256: 22a53c13935f7d0c673dbd3ec3d5ea884afae38525f6a750e6657491f91d3e45
Contents?: true
Size: 1.27 KB
Versions: 75
Compression:
Stored size: 1.27 KB
Contents
# frozen_string_literal: true module Gitlab module QA module Scenario module Test module Integration class Mattermost < Scenario::Template def perform(release, *rspec_args) Component::Gitlab.perform do |gitlab| gitlab.release = release gitlab.network = 'test' mattermost_hostname = "mattermost.#{gitlab.network}" mattermost_external_url = "http://#{mattermost_hostname}" gitlab.add_network_alias(mattermost_hostname) gitlab.omnibus_configuration << <<~OMNIBUS mattermost_external_url '#{mattermost_external_url}'; OMNIBUS gitlab.instance do Component::Specs.perform do |specs| specs.suite = 'Test::Integration::Mattermost' specs.release = gitlab.release specs.network = gitlab.network specs.args = [ gitlab.address, "--mattermost-address", mattermost_external_url, *rspec_args ] end end end end end end end end end end
Version data entries
75 entries across 75 versions & 1 rubygems