Sha256: b61b29042fb1947ba287f36bd9299aa904c7abc00c30370b39d913e7d077641a
Contents?: true
Size: 745 Bytes
Versions: 75
Compression:
Stored size: 745 Bytes
Contents
# frozen_string_literal: true module Gitlab module QA module Scenario module Test module Instance ## # Run test suite against staging.gitlab.com # class StagingGeo < DeploymentBase def initialize @suite = 'QA::EE::Scenario::Test::Geo' end def deployment_component Component::Staging end def non_rspec_args [ '--primary-address', deployment_component::ADDRESS, '--secondary-address', deployment_component::GEO_SECONDARY_ADDRESS, '--without-setup' ] end end end end end end end
Version data entries
75 entries across 75 versions & 1 rubygems