Sha256: 785cc57c35986a4e3c5fe47ec346faf178efb3221a2887ace943e51cec7fc3b5
Contents?: true
Size: 918 Bytes
Versions: 38
Compression:
Stored size: 918 Bytes
Contents
module Gitlab module QA module Scenario module Test module Instance # Run Geo test suite against any GitLab Geo (two-node) instance, # including staging and on-premises installation. class Geo < Scenario::Template def perform(release, primary_address, secondary_address, *rspec_args) # Geo requires an EE license Runtime::Env.require_license! Component::Specs.perform do |specs| specs.suite = 'QA::EE::Scenario::Test::Geo' specs.release = Release.new(release) specs.args = [ '--primary-address', primary_address, '--secondary-address', secondary_address, '--without-setup', *rspec_args ] end end end end end end end end
Version data entries
38 entries across 38 versions & 1 rubygems