Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
81bfb4af
Commit
81bfb4af
authored
Mar 16, 2022
by
Andrejs Cunskis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not run smoke and reliable e2e specs twice in review pipeline
parent
5a4da371
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
.gitlab/ci/review-apps/qa.gitlab-ci.yml
.gitlab/ci/review-apps/qa.gitlab-ci.yml
+1
-0
qa/qa/runtime/env.rb
qa/qa/runtime/env.rb
+4
-0
qa/qa/specs/runner.rb
qa/qa/specs/runner.rb
+1
-2
No files found.
.gitlab/ci/review-apps/qa.gitlab-ci.yml
View file @
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
:
...
...
qa/qa/runtime/env.rb
View file @
81bfb4af
...
...
@@ -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
...
...
qa/qa/specs/runner.rb
View file @
81bfb4af
...
...
@@ -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
|
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment