Sha256: cf6cabb0f09605258fcbf900b16716a94cd16f08b0c4fadd220da44077b6cb50
Contents?: true
Size: 662 Bytes
Versions: 92
Compression:
Stored size: 662 Bytes
Contents
# frozen_string_literal: true module Gitlab module QA module Scenario module Test module Instance ## # Run test suite against staging.gitlab.com (or geo.staging.gitlab.com during failover) # class Staging < DeploymentBase def deployment_component Component::Staging end def non_rspec_args if Runtime::Env.geo_failover? [deployment_component::GEO_SECONDARY_ADDRESS] else [deployment_component::ADDRESS] end end end end end end end end
Version data entries
92 entries across 92 versions & 1 rubygems