gitlab-qa 8.4.0 → 8.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0e196fadefd8ed7eb786eccf7b619ce3173077a85a42039c0e93174c3d468a4e
4
- data.tar.gz: 99c644f122bf4c4db3b95032c39d572946597c983d00f6b4bb2949034df39055
3
+ metadata.gz: a758eb621a80dc1dffc3abca040003057fdb20fc75c246c1ffdac09808c0a379
4
+ data.tar.gz: 0b753ad126a428621c735d2277cf2d21132de0969078255afce15affe4e8d7e6
5
5
  SHA512:
6
- metadata.gz: e9e458196a7efd87fe5b432ee30bc8bc29bc88d18b3037e0be9ad1fb7beaf14537603ae14d2d6482a6154c990687b71ff25043877c410af55a67e61325c5eef4
7
- data.tar.gz: 46803ea55f474a5a2b2b4f145200497f3d7646a11574cd1300ae068289c85da94003ef6d57638aec3d34d46474f80c99eafe6b146dbf331f412c203d745bd360
6
+ metadata.gz: db2058be2ccfb34ac72bb7a14cb453142a06d7a88c9084fe575d62425faac0ebda7beace5d45568a7945a3d3cad19939e0a8e60fa0b621b20c39424e01ef2dc9
7
+ data.tar.gz: 84fcf64c8afe5075d761f0f8116a8fbfb8944c3f801c145c003e13485110815bcbacda5c3ddf01d92e3353f280bdb2cf6cce4862519557912d0894d434f1cd77
@@ -2,6 +2,7 @@ ce:mtls:
2
2
  extends:
3
3
  - .rules:ce-never-when-triggered-by-feature-flag-definition-change
4
4
  - .test
5
+ - .high-capacity
5
6
  - .ce-variables
6
7
  - .rspec-report-opts
7
8
  variables:
@@ -11,6 +12,7 @@ ee:mtls:
11
12
  extends:
12
13
  - .rules:ee-never-when-triggered-by-feature-flag-definition-change
13
14
  - .test
15
+ - .high-capacity
14
16
  - .ee-variables
15
17
  - .rspec-report-opts
16
18
  variables:
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gitlab-qa (8.4.0)
4
+ gitlab-qa (8.4.1)
5
5
  activesupport (~> 6.1)
6
6
  gitlab (~> 4.18.0)
7
7
  http (~> 5.0)
@@ -159,14 +159,14 @@ module Gitlab
159
159
  # Gets the name of the pipeline the test was run in, to be used as the key of a scoped label
160
160
  #
161
161
  # Tests can be run in several pipelines:
162
- # gitlab-qa, nightly, staging, canary, production, preprod, MRs, and the default branch (master/main)
162
+ # gitlab, nightly, staging, canary, production, preprod, MRs, and the default branch (master/main)
163
163
  #
164
164
  # Some of those run in their own project, so CI_PROJECT_NAME is the name we need. Those are:
165
165
  # nightly, staging, canary, production, and preprod
166
166
  #
167
- # MR, master/main, and gitlab-qa tests run in gitlab-qa, but we only want to report tests run on
167
+ # MR, master/main, and gitlab tests run in gitlab-qa, but we only want to report tests run on
168
168
  # master/main because the other pipelines will be monitored by the author of the MR that triggered them.
169
- # So we assume that we're reporting a master/main pipeline if the project name is 'gitlab-qa'.
169
+ # So we assume that we're reporting a master/main pipeline if the project name is 'gitlab'.
170
170
 
171
171
  @pipeline ||= Runtime::Env.pipeline_from_project_name
172
172
  end
@@ -199,7 +199,7 @@ module Gitlab
199
199
  end
200
200
 
201
201
  def pipeline_from_project_name
202
- ci_project_name.to_s.start_with?('gitlab-qa') ? QA::Runtime::Env.default_branch : ci_project_name
202
+ ci_project_name.to_s.start_with?('gitlab') ? QA::Runtime::Env.default_branch : ci_project_name
203
203
  end
204
204
 
205
205
  def run_id
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Gitlab
4
4
  module QA
5
- VERSION = '8.4.0'
5
+ VERSION = '8.4.1'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitlab-qa
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.4.0
4
+ version: 8.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - GitLab Quality
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-08-18 00:00:00.000000000 Z
11
+ date: 2022-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: climate_control