Commit a6f4e0bb authored by Andrejs Cunskis's avatar Andrejs Cunskis

Merge branch 'acunskis-add-skip-reliable' into 'master'

Do not run smoke and reliable e2e specs twice in review pipeline

See merge request gitlab-org/gitlab!83043
parents 6fe7f25b 81bfb4af
......@@ -93,6 +93,7 @@ review-qa-all:
variables:
QA_RUN_TYPE: review-qa-all
QA_SCENARIO: Test::Instance::All
QA_SKIP_SMOKE_RELIABLE: "true"
review-performance:
extends:
......
......@@ -461,6 +461,10 @@ module QA
enabled?(ENV['QA_VALIDATE_RESOURCE_REUSE'], default: false)
end
def skip_smoke_reliable?
enabled?(ENV['QA_SKIP_SMOKE_RELIABLE'], default: false)
end
private
def remote_grid_credentials
......
......@@ -41,9 +41,8 @@ module QA
end
tags_for_rspec.push(%w[--tag ~geo]) unless QA::Runtime::Env.geo_environment?
tags_for_rspec.push(%w[--tag ~skip_signup_disabled]) if QA::Runtime::Env.signup_disabled?
tags_for_rspec.push(%w[--tag ~smoke --tag ~reliable]) if QA::Runtime::Env.skip_smoke_reliable?
tags_for_rspec.push(%w[--tag ~skip_live_env]) if QA::Specs::Helpers::ContextSelector.dot_com?
QA::Runtime::Env.supported_features.each_key do |key|
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment