gitlab_quality-test_tooling 2.14.0 → 2.15.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba9f3409f8cfe77292caed5e2bd58e6756100c90b3215c1ed2c7d2137f84da39
|
4
|
+
data.tar.gz: c9579ca26e01aca5a5ee47df8592bd2b34939e1d0013a3234fcb8ea1f4a8d78f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d3d13560d53a637ad0e65729d909471cbcd9333ac39244fa82bc674d2588bef9ddda33b90ea00a441b6c1c0e1e7cf37b70431713fa77d35b3163c8486bbeb5c
|
7
|
+
data.tar.gz: 100e1145377cfb339ed8e25f3029c65d11ae9f1488135477edcbca2e5e145ed354c81875b8052213054ceca6d51f1fcfb87593be1546d6e133a3724b940ddc2a
|
data/Gemfile.lock
CHANGED
@@ -25,7 +25,8 @@ module GitlabQuality
|
|
25
25
|
|
26
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
|
+
FAILURE_ISSUE_GUIDE_URL = "https://handbook.gitlab.com/handbook/engineering/testing/guide-to-e2e-test-failure-issues/"
|
29
|
+
FAILURE_ISSUE_HANDBOOK_GUIDE = "**:rotating_light: [End-to-End Test Failure Issue Debugging Guide](#{FAILURE_ISSUE_GUIDE_URL}) :rotating_light:**\n".freeze
|
29
30
|
# Map commits to security fork (gitlab-org/security/gitlab) for gitlab-org/gitlab since security patches exist
|
30
31
|
# there before being released to the public repository
|
31
32
|
DIFF_PROJECT_MAPPINGS = {
|
@@ -300,7 +301,7 @@ module GitlabQuality
|
|
300
301
|
end
|
301
302
|
|
302
303
|
def new_issue_description(test)
|
303
|
-
super + [
|
304
|
+
FAILURE_ISSUE_HANDBOOK_GUIDE + super + [
|
304
305
|
"\n#{commit_diff_section}",
|
305
306
|
"### Stack trace",
|
306
307
|
"```\n#{test.full_stacktrace}\n```",
|
@@ -321,7 +322,7 @@ module GitlabQuality
|
|
321
322
|
pipeline = ops_gitlab_client.find_pipeline(Runtime::Env.ci_project_path, Runtime::Env.ci_pipeline_id.to_i)
|
322
323
|
generate_ops_gitlab_diff(pipeline)
|
323
324
|
else
|
324
|
-
pipeline = gitlab.find_pipeline(
|
325
|
+
pipeline = gitlab.find_pipeline(Runtime::Env.ci_project_path, Runtime::Env.ci_pipeline_id.to_i)
|
325
326
|
generate_gitlab_diff(pipeline)
|
326
327
|
end
|
327
328
|
end
|
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.15.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: 2025-06-
|
11
|
+
date: 2025-06-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: climate_control
|