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: 8f16f6945bb8f9bdc978fbc2a3b3592974a5d51e17492a280276cbf85a2f2ac4
4
- data.tar.gz: 17728849b7246c5cdc1e8b146224f8229f6fe1cfd84ae7c3f283db48dd26bbfa
3
+ metadata.gz: ba9f3409f8cfe77292caed5e2bd58e6756100c90b3215c1ed2c7d2137f84da39
4
+ data.tar.gz: c9579ca26e01aca5a5ee47df8592bd2b34939e1d0013a3234fcb8ea1f4a8d78f
5
5
  SHA512:
6
- metadata.gz: 33df5f745b4d9626d5b721ece310076383679cc4551d63e64cc16cab8dd86f4ba2753de5fd23d1a7764419fcaeafac8da5658d7f9034453ab03572cc9516a381
7
- data.tar.gz: b7d7b5225aa28ec47867163aecdb633f7056a419241c79b305ffe4c750737d7896aefcf1045e50704c1a223a61309ec8d1a7b837e10f7da051a636770aff6a1d
6
+ metadata.gz: 5d3d13560d53a637ad0e65729d909471cbcd9333ac39244fa82bc674d2588bef9ddda33b90ea00a441b6c1c0e1e7cf37b70431713fa77d35b3163c8486bbeb5c
7
+ data.tar.gz: 100e1145377cfb339ed8e25f3029c65d11ae9f1488135477edcbca2e5e145ed354c81875b8052213054ceca6d51f1fcfb87593be1546d6e133a3724b940ddc2a
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- gitlab_quality-test_tooling (2.14.0)
4
+ gitlab_quality-test_tooling (2.15.1)
5
5
  activesupport (>= 7.0, < 7.3)
6
6
  amatch (~> 0.4.1)
7
7
  fog-google (~> 1.24, >= 1.24.1)
@@ -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(project, Runtime::Env.ci_pipeline_id.to_i)
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module GitlabQuality
4
4
  module TestTooling
5
- VERSION = "2.14.0"
5
+ VERSION = "2.15.1"
6
6
  end
7
7
  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.14.0
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-12 00:00:00.000000000 Z
11
+ date: 2025-06-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: climate_control