gitlab_quality-test_tooling 2.11.0 → 2.13.0
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 886a32709ca918a9c86d8a770239f809fa51dce3392891b7712f2b085b52a409
|
4
|
+
data.tar.gz: 1ee8b80242894a606e11c395b23f498d9a5f8d5fcf65447b93ce21006ecb1aaa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a23f34a8668c4a4d863aa2cfb16fbc1505c4534f2c06f2df43e257b71704f706e9977efa3c18a8dc81d9d2bb6dfa7c09dc65a5a993a50b79468e683022214d7
|
7
|
+
data.tar.gz: 4685c3fd432a26940b23a69d48e9214aa33950697f91ed43d0b9fa6ecd113f25dd68ab5d95a7cbbcdd129ebff3801cd83c8dcd0a52cabaf860bc332cb1f7f13d
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
gitlab_quality-test_tooling (2.
|
4
|
+
gitlab_quality-test_tooling (2.13.0)
|
5
5
|
activesupport (>= 7.0, < 7.3)
|
6
6
|
amatch (~> 0.4.1)
|
7
7
|
fog-google (~> 1.24, >= 1.24.1)
|
@@ -11,7 +11,7 @@ PATH
|
|
11
11
|
nokogiri (~> 1.10)
|
12
12
|
parallel (>= 1, < 2)
|
13
13
|
rainbow (>= 3, < 4)
|
14
|
-
rspec-parameterized (
|
14
|
+
rspec-parameterized (>= 1.0.0, < 3.0)
|
15
15
|
table_print (= 1.5.7)
|
16
16
|
zeitwerk (>= 2, < 3)
|
17
17
|
|
@@ -23,7 +23,7 @@ module GitlabQuality
|
|
23
23
|
FAILURE_STACKTRACE_REGEX = %r{(?:(?:.*Failure/Error:(?<stacktrace>.+))|(?<stacktrace>.+))}m
|
24
24
|
ISSUE_STACKTRACE_REGEX = /### Stack trace\s*(```)#{FAILURE_STACKTRACE_REGEX}(```)\n*\n###/m
|
25
25
|
|
26
|
-
NEW_ISSUE_LABELS = Set.new(%w[test failure::new priority::2 automation:bot-authored]).freeze
|
26
|
+
NEW_ISSUE_LABELS = Set.new(%w[test failure::new priority::2 automation:bot-authored type::maintenance]).freeze
|
27
27
|
SCREENSHOT_IGNORED_ERRORS = ['500 Internal Server Error', 'fabricate_via_api!', 'Error Code 500'].freeze
|
28
28
|
|
29
29
|
# Map commits to security fork (gitlab-org/security/gitlab) for gitlab-org/gitlab since security patches exist
|
@@ -342,6 +342,8 @@ module GitlabQuality
|
|
342
342
|
end
|
343
343
|
|
344
344
|
def fetch_deployment_info(pipeline)
|
345
|
+
return 'No pipeline name set.' unless Runtime::Env.ci_pipeline_name
|
346
|
+
|
345
347
|
pipeline_deploy_version = Runtime::Env.ci_pipeline_name.match(/(\d+\.\d+\.\d+)(?:-|$)/)&.captures&.first
|
346
348
|
deployments = fetch_deployments(ops_gitlab_client, pipeline)
|
347
349
|
found_deployment = find_matching_deployment(pipeline_deploy_version, deployments)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitlab_quality-test_tooling
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- GitLab Quality
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-05-
|
11
|
+
date: 2025-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: climate_control
|
@@ -380,16 +380,22 @@ dependencies:
|
|
380
380
|
name: rspec-parameterized
|
381
381
|
requirement: !ruby/object:Gem::Requirement
|
382
382
|
requirements:
|
383
|
-
- - "
|
383
|
+
- - ">="
|
384
|
+
- !ruby/object:Gem::Version
|
385
|
+
version: '1.0'
|
386
|
+
- - "<"
|
384
387
|
- !ruby/object:Gem::Version
|
385
|
-
version:
|
388
|
+
version: '3.0'
|
386
389
|
type: :runtime
|
387
390
|
prerelease: false
|
388
391
|
version_requirements: !ruby/object:Gem::Requirement
|
389
392
|
requirements:
|
390
|
-
- - "
|
393
|
+
- - ">="
|
394
|
+
- !ruby/object:Gem::Version
|
395
|
+
version: '1.0'
|
396
|
+
- - "<"
|
391
397
|
- !ruby/object:Gem::Version
|
392
|
-
version:
|
398
|
+
version: '3.0'
|
393
399
|
- !ruby/object:Gem::Dependency
|
394
400
|
name: table_print
|
395
401
|
requirement: !ruby/object:Gem::Requirement
|